How do I plot table with subplot?
이전 댓글 표시
Hi everyone,
I have a simple 1x3 table
T=[35 40 45]
Below is a sample syntax from class (not my code).
I'm trying to figure out how to use x and y1 based on the code below.
Also how I could use subplot if I have multiple rows and columns.
I appreciate all the help. Thanks.
x = linspace(-2*pi, 2*pi)
y1 = sin(x);
plot(x,y1)
댓글 수: 5
madhan ravi
2020년 10월 23일
What you have is an array with 3 elements, you need to elaborate what you want to do with those three values?
Emmanuel Matata Bili Bili
2020년 10월 23일
Emmanuel Matata Bili Bili
2020년 10월 25일
Cris LaPierre
2020년 10월 25일
You do not need the hold on and hold off commands.
Emmanuel Matata Bili Bili
2020년 10월 27일
답변 (1개)
Cris LaPierre
2020년 10월 23일
0 개 추천
I recommend going through MATLAB Onramp. Chapter 9 covers plotting, but it sounds like some of the other chapters would be helpful as well.
카테고리
도움말 센터 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!