3D surface plotting

Is it possible to plot a surface out of 3 vectors? r= [3 4 5 9 7 8 10 15 14] p= [4 1 7 8 21 5 6 10 7] v= 2*r.^2+2*p.^2; surf and mesh works for the case when v is a matrix not a vector!

回答 (1 件)

KSSV
KSSV 2017 年 6 月 26 日

1 投票

r= [3 4 5 9 7 8 10 15 14];
p= [4 1 7 8 21 5 6 10 7] ;
[R,P]=meshgrid(r,p);
V= 2*R.^2+2*P.^2 ;
surf(R,P,V)

カテゴリ

質問済み:

F R
2017 年 6 月 26 日

回答済み:

2017 年 6 月 26 日

Community Treasure Hunt

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

Start Hunting!

Translated by