How to draw 3D plot in matlab with labels?

1 次查看(过去 30 天)
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

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Spectral Measurements 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by