Info

この質問は閉じられています。 編集または回答するには再度開いてください。

Does anyone know how to plot a 3d plot with flat x and y axis? Like this: www.shmoop​.com/syste​ms-equatio​ns-inequal​ities/thre​e-d-graphs​.html

1 回表示 (過去 30 日間)
Torjus Settendal
Torjus Settendal 2017 年 5 月 3 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
figure();
set(0,'DefaultAxesFontSize',24);
for i=1:length(testno)
x=Data(i).position/10;
y= Data(i).t;
z1=Data(i).voltage2/1000;
z2=Data(i).voltage3/1000;
z3=Data(i).voltage4/1000;
plot3(x,y,[z1,z2,z3])
end
xlabel('length');
ylabel('Time');
zlabel('Voltage');

回答 (2 件)

Chaitral Date
Chaitral Date 2017 年 5 月 8 日
編集済み: Chaitral Date 2017 年 5 月 8 日
Can not see any example in the above link. Please share the image along with the input 'Data' for the above code.

Harsh
Harsh 2017 年 5 月 11 日
Hello Torjus,
If you still need help with this, please contact MathWorks Technical Support here: https://www.mathworks.com/support/contact_us/
Please be sure to provide a detailed description of the issue and attach any relevant files / code / examples required to investigate the issue.

この質問は閉じられています。

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by