Getting blank plots in matlab

1 Ansicht (letzte 30 Tage)
Kyrillos Fathi Kamal
Kyrillos Fathi Kamal am 14 Jan. 2021
hi, i'm running the code without errors but getting blank plots can't figure out where is the problem

Antworten (1)

Hiro Yoshino
Hiro Yoshino am 14 Jan. 2021
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 Kommentare
Hiro Yoshino
Hiro Yoshino am 14 Jan. 2021
I suggest you use "break points" so that you can check and see what's going on.
Kyrillos Fathi Kamal
Kyrillos Fathi Kamal am 14 Jan. 2021
ok will check and see, thanks

Melden Sie sich an, um zu kommentieren.

Community Treasure Hunt

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

Start Hunting!

Translated by