フィルターのクリア

Plot title keeps rewriting on top in livescript

1 回表示 (過去 30 日間)
Daniel Joseph
Daniel Joseph 2022 年 11 月 22 日
コメント済み: Daniel Joseph 2022 年 11 月 22 日
Hello,
I have an issue with regards to plots in my livescript. When I execute a section of code multiple times, the plot looks like this
As you can see the title is scuffed, almost like it's been rewritten multiple times on top of each other.
Here's the code:
x=linspace(0,5,100); % Spring displacement [mm]
y=11.58*x.^3 - 96.56*x.^2 + 274.7*x - 0.0276; % Force output (non-linear spring) [N]
fig1=figure(1);
ax5=axes('Parent',fig1)
plot(x,y)
xlabel('Displacement in mm')
ylabel('Force [N]')
title('Disc Spring - Force vs Deflection (w/o preload)')
The title appears normal when I execute this section outside of the live script or if I explictly open a seperate figure window.
However, the screenshot above, is from running and re-running the code multiple times. Any support is appreciated.
Many thanks,
Daniel

採用された回答

VBBV
VBBV 2022 年 11 月 22 日
close all % add this line at begin
x=linspace(0,5,100);
  1 件のコメント
Daniel Joseph
Daniel Joseph 2022 年 11 月 22 日
I feel stupid now, such a simple solution. Thanks a lot VBBV.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File Exchange2-D and 3-D Plots についてさらに検索

製品


リリース

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by