Help 3D plotting in matlab
显示 更早的评论
Hello guys, are you ok! I Hope Sooooo
i have the following data i would like to help me to plot it in 3d please a=1:1:5 b=11:1:15
c=[ 3 4 6 7 7; 5 5 8 6 2; 3 6 4 8 9 ]; PLEASE NOTE THAT C IS A 5X3 MATRIX
It's really i'll appreciate it
Ta ra
回答(3 个)
Azzi Abdelmalek
2012-9-29
plot3(a,b,c)
4 个评论
sese
2012-9-29
Azzi Abdelmalek
2012-9-29
your vectors are not the same length. why?
sese
2012-10-10
Azzi Abdelmalek
2012-10-10
plot3(a,b,c)
Razvan
2012-9-29
0 个投票
Image Analyst
2012-10-10
You didn't specify how you wanted them displayed, so until then, I offer this:
c=[ 3 4 6 7 7; 5 5 8 6 2; 3 6 4 8 9 ]
x = c(1,:);
y = c(2,:);
z = c(3,:);
scatter3(x, y, z);
类别
在 帮助中心 和 File Exchange 中查找有关 Annotations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!