フィルターのクリア

Help 3D plotting in matlab

1 回表示 (過去 30 日間)
sese
sese 2012 年 9 月 29 日
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
Azzi Abdelmalek 2012 年 9 月 29 日
  4 件のコメント
sese
sese 2012 年 10 月 10 日
HI BROTHER AZIZ, I ALREADY EDITED MY VECTORS TNX AND WAITING FOR YOUR HELP
Azzi Abdelmalek
Azzi Abdelmalek 2012 年 10 月 10 日

サインインしてコメントする。


Razvan
Razvan 2012 年 9 月 29 日

Image Analyst
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);

カテゴリ

Help Center および File ExchangeAnnotations についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by