Getting blank plots in matlab

조회 수: 1 (최근 30일)
Kyrillos Fathi Kamal
Kyrillos Fathi Kamal 2021년 1월 14일
댓글: Kyrillos Fathi Kamal 2021년 1월 14일
hi, i'm running the code without errors but getting blank plots can't figure out where is the problem

답변 (1개)

Hiro Yoshino
Hiro Yoshino 2021년 1월 14일
figure;
subplot(3,1,1);
plot(th7,th6,'g','linewidth',2);grid
xlabel('{ \theta_{7}} [deg]');
(th7, th6) is a point - try this one:
figure;
subplot(3,1,1);
plot(th7,th6,'o');grid
xlabel('{ \theta_{7}} [deg]');
  댓글 수: 4
Hiro Yoshino
Hiro Yoshino 2021년 1월 14일
I suggest you use "break points" so that you can check and see what's going on.
Kyrillos Fathi Kamal
Kyrillos Fathi Kamal 2021년 1월 14일
ok will check and see, thanks

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Subplots에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by