フィルターのクリア

surface chart

2 ビュー (過去 30 日間)
Pankaj
Pankaj 2012 年 2 月 5 日
i have a 200X200 matrix R filled with structure having 4 fields (a,b,c,d). i want to plot one of these attributes on a 3 D chart so I am using
surf((1:200),(1:200), R(:,:).d) or mesh((1:200),(1:200),R(:,:).d),
this doesn't seem to work - any suggestions on how to go about this?

回答 (1 件)

Amit Davidi
Amit Davidi 2012 年 2 月 5 日
Try using:
surf(1:200, 1:200, reshape([R.d], size(R))

カテゴリ

Help Center および File ExchangeSurface and Mesh Plots についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by