Info
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
Does anyone know how to plot a 3d plot with flat x and y axis? Like this: www.shmoop.com/systems-equations-inequalities/three-d-graphs.html
조회 수: 1 (최근 30일)
이전 댓글 표시
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');
댓글 수: 0
답변 (2개)
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.
댓글 수: 0
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.
댓글 수: 0
이 질문은 마감되었습니다.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!