*PLOT FIELD VECTOR*
이전 댓글 표시
(sin(4*x+8*y),cos(4*x+8*y),0)
댓글 수: 16
Image Analyst
2011년 12월 19일
Yeah, so? How about you explain something in English rather than just display a bunch of code? If there's a problem with quiver or inline, have you tried to figure it out by looking up the arguments and examples in the help? If you got an error, why didn't you post the error???
justin Taylor
2011년 12월 19일
Walter Roberson
2011년 12월 19일
I misread the original code; sub2ind() was not an appropriate solution.
What error message did you get originally? The sizes look okay to me when I work them through mentally.
Naz
2011년 12월 19일
I used the code you posted and did not get any errors
justin Taylor
2011년 12월 19일
Walter Roberson
2011년 12월 19일
It would save time if you were to post the error message that *you* encountered, or at least describe what the difference was between the output you got and the output you expected?
justin Taylor
2011년 12월 19일
Walter Roberson
2011년 12월 19일
You want to find the surface area of a quiver plot??
What exactly are you asking us in this question? Are you encountering an error in the code you posted?
If you were asking us about how to find the area surface limit x,y,z then your code would have to have z in it somewhere. The closest you show is your F, which is only 2D, and "surface area" is not a phrase that is applied to a 2D object (the 2D term is just "area")
Do not just post code and expect us to know what you want to do!
justin Taylor
2011년 12월 19일
Walter Roberson
2011년 12월 19일
Okay, so you have defined an x, y, and z, and you have indicated that you need to use quiver(). You have not, though, indicated what is to be done. quiver() requires an x and y (but not a z), and it requires two vector fields, u and v. You do not have enough variables defined, not unless you want to use quiver(x,y) with the x and the y acting as u and v matrices.
http://www.mathworks.com/help/techdoc/ref/quiver.html
Are you certain that you want to write the value sin(4*x+8*y) over top of x? And then to use the new x in calculating cos(4*x+8*y) that you then write over the old y ?
justin Taylor
2011년 12월 19일
Walter Roberson
2011년 12월 19일
I see you have edited your code, but you have not yet indicated what is to be done. What is the relationship between the F matrix and the quivers to be drawn? For the quiver() call you need an "x", a "y", a "u" and a "v" parameter: do the "x" and "y" parameters you wish to use correspond to your "x" and "y" variables?
justin Taylor
2011년 12월 19일
Naz
2011년 12월 19일
Can you edit your question and provide all information that is given to you as well as requirements?
justin Taylor
2011년 12월 19일
Walter Roberson
2011년 12월 19일
You removed all the useful information from your question...
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Vector Fields에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!