Filter löschen
Filter löschen

Plot title keeps rewriting on top in livescript

1 Ansicht (letzte 30 Tage)
Daniel Joseph
Daniel Joseph am 22 Nov. 2022
Kommentiert: Daniel Joseph am 22 Nov. 2022
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

Akzeptierte Antwort

VBBV
VBBV am 22 Nov. 2022
close all % add this line at begin
x=linspace(0,5,100);
  1 Kommentar
Daniel Joseph
Daniel Joseph am 22 Nov. 2022
I feel stupid now, such a simple solution. Thanks a lot VBBV.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu 2-D and 3-D Plots finden Sie in Help Center und File Exchange

Produkte


Version

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by