フィルターのクリア

How to draw 3D plot in matlab with labels?

3 ビュー (過去 30 日間)
VIJAY
VIJAY 2020 年 5 月 25 日
コメント済み: KSSV 2020 年 5 月 25 日
I have 70*6 matrix .The row indicate as Line Number and column indicates asPower Loss. I have to draw a 3D plot for 70Line number for 6 scenario for this Power Loss.Herewith i attached model graph.How to form matlab code to get attached image of 3D plot?

採用された回答

KSSV
KSSV 2020 年 5 月 25 日
編集済み: KSSV 2020 年 5 月 25 日
You can porceed something like this:
A = rand(70,6) ;
x = 1:70 ;
y = ones(size(x)) ;
figure
hold on
for i = 1:6
plot3(x,i*y,A(:,i))
end
  2 件のコメント
VIJAY
VIJAY 2020 年 5 月 25 日
y = ones(size(y)) ; made an error
KSSV
KSSV 2020 年 5 月 25 日
Ohh yes....edited the code...

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

その他の回答 (0 件)

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by