필터 지우기
필터 지우기

Create and combine quiver and contour plots

조회 수: 1 (최근 30일)
Paul
Paul 2014년 12월 19일
댓글: Thorsten 2014년 12월 19일
Im trying to figure out how to create and combine a quiver plot and a contourf using 4 vectors. I already have the quiver plot done but im stuck on the contourf. What i keep getting with the countourf is:
Error using contourf (line 61)
Z must be at least a 2x2 matrix.
Error in Importingshit (line 9)
contourf(x,y,vx,vy);
For the time being im just trying to get the contourf to work but if someone is willing to help me combine them then i would deffinitly not refuse. Thanks in advance!

답변 (2개)

Star Strider
Star Strider 2014년 12월 19일
You’re calling contourf wrong. It doesn’t use the ‘vx’ and ‘vy’ (that I assume you use in your quiver plot). It wants a single square matrix ‘z’, or ‘x’, ‘y’, ‘z’ matrix arguments. See the documentation for it for details.
  댓글 수: 4
Paul
Paul 2014년 12월 19일
1.
Error using contourf (line 61)
Z must be at least a 2x2 matrix.
2. when it "worked" it was making a countour but the contours didnt match up with the quiver. They werent representing what they should have so i did something wrong.
Star Strider
Star Strider 2014년 12월 19일
What are the sizes of x and y?
What is the surface you want to plot? It has to be a matrix, and ideally a function of matrices X and Y. The surface Z must be some function of X and Y if you give it all three arguments.
We don’t have your data or code, so we’re purely guessing here.

댓글을 달려면 로그인하십시오.


Thorsten
Thorsten 2014년 12월 19일
편집: Thorsten 2014년 12월 19일
contourf(x,y,sqrt(vx.^2 + vy.^2));
  댓글 수: 1
Paul
Paul 2014년 12월 19일
same error as above:
Error using contourf (line 61)
Z must be at least a 2x2 matrix.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Vector Fields에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by