Contour plot problem
이전 댓글 표시
I am making a contour plot of the flow arount a oval. Each time I run it however, the plot contains 2 vertical lines that created discontinuities in the streamlines. Does anyone know how to get these to go away.
[x,y]=meshgrid(-3:0.01:3);
U = 10;
msource = 1;
a = .5;
psi = U.*y+msource.*atan(y./(x))-msource.*atan(y./(x-2));
figure
contour(x,y,psi,50)
답변 (1개)
Fangjun Jiang
2011년 11월 11일
It is not a vertical line. If you change the meshgrid, you'll see.
[x,y]=meshgrid(-3:0.1:3)
카테고리
도움말 센터 및 File Exchange에서 Lighting, Transparency, and Shading에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!