Getting blank plots in matlab
1 回表示 (過去 30 日間)
古いコメントを表示
hi, i'm running the code without errors but getting blank plots can't figure out where is the problem![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/487528/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/487528/image.png)
0 件のコメント
回答 (1 件)
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
2021 年 1 月 14 日
I suggest you use "break points" so that you can check and see what's going on.
参考
カテゴリ
Help Center および File Exchange で Subplots についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!