x = C(:,1); y= C(:,2); i have two 2D points and i want to convert these two points to 3D graph

1 view (last 30 days)
x = C(:,1); y= C(:,2);
. how can i do plot them on 3D graph

Answers (1)

KSSV
KSSV on 26 Jul 2019
[X,Y] = meshgrid(x,y) ;
mesh(X,Y)

Tags

Products

Community Treasure Hunt

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

Start Hunting!