Contourf matrix plot contour
1 回表示 (過去 30 日間)
古いコメントを表示
I have written a code to graph contours of a matrix in 2D. However, although i have values of MY2 <10, when it is plotted there is a white area for MY2<10. Would you please help me with this. I have checked this several times and it seems to be alright!
All required files have been attached in a ZIP file.
Files can be downloaded from the following link
1 件のコメント
Walter Roberson
2013 年 9 月 30 日
Your zip files did not appear to get attached.
Please show the contourf() call you use.
回答 (2 件)
Walter Roberson
2013 年 10 月 1 日
The call
[C,M]=contourf(MX2,MY2,MR2,10);
requests that 10 contour levels be used, not a single contour level at value 10. To use a single contour level at value 10, code
[C, M] = contourf(MX2, MY2, MR2, [10 10]);
Mehdi
2013 年 10 月 4 日
1 件のコメント
Walter Roberson
2013 年 10 月 4 日
Why not use logical indexing to find the cut-plane for MY2 being 10, and applying that logical index to MX2, MY2, MR2, and contourf() the result ?
参考
カテゴリ
Help Center および File Exchange で Contour Plots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!