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 CenterFile Exchange 中查找有关 Surface and Mesh Plots 的更多信息

产品

Community Treasure Hunt

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

Start Hunting!

Translated by