Labfans是一个针对大学生、工程师和科研工作者的技术社区。 | 论坛首页 | 联系我们(Contact Us) |
![]() |
|
![]() |
#1 |
高级会员
注册日期: 2008-04-02
年龄: 47
帖子: 175
声望力: 21 ![]() |
![]()
交线方程:
g1(m,n)=f1(v,u) g2(m,n)=f2(v,u) g3(m,n)=f3(v,u) 对m,n,v,u中的任一个在合理区间内进行离散化,对每一个离散后的m或n、v、u值求解交线方程。 关于如何截掉交线之外的一端,初步的想法是,根据求解交线方程获得的(m,n,v,u)数对,调整绘图区间,重新绘制曲面。 |
![]() |
![]() |
![]() |
#2 |
初级会员
注册日期: 2008-04-15
年龄: 39
帖子: 27
声望力: 18 ![]() |
![]()
我用slove求解方程,出错了。
Warning: Explicit solution could not be found. > In solve at 140 In sym.solve at 49 S = [ empty sym ] ??? Error using ==> reshape To RESHAPE the number of elements must not change. Error in ==> sym.maple at 94 result = reshape(result,size(varargin{3})); Error in ==> sym.sin at 7 Y = maple('map','sin',X); 怎么回事呢? |
![]() |
![]() |
![]() |
#3 |
初级会员
注册日期: 2008-04-15
年龄: 39
帖子: 27
声望力: 18 ![]() |
![]()
我改了V的起始值以后,不会说没有精确解了,但是还是有这个错误
??? Error using ==> reshape To RESHAPE the number of elements must not change. Error in ==> sym.maple at 94 result = reshape(result,size(varargin{3})); Error in ==> sym.sin at 7 Y = maple('map','sin',X); 这是为什么? |
![]() |
![]() |
![]() |
#4 |
初级会员
注册日期: 2008-10-03
年龄: 34
帖子: 3
声望力: 0 ![]() |
![]()
用UV构成一个meshgrid,surf(f,g,h),hold on,surf(F,G,H);
PLOT3(f,g,H),plot3(F,G,h)应该可以作出交线 |
![]() |
![]() |