Plot title keeps rewriting on top in livescript

3 views (last 30 days)
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

Accepted Answer

VBBV
VBBV on 22 Nov 2022
close all % add this line at begin
x=linspace(0,5,100);

More Answers (0)

Categories

Find more on 2-D and 3-D Plots in Help Center and File Exchange

Products


Release

R2020b

Community Treasure Hunt

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

Start Hunting!