Borrar filtros
Borrar filtros

Plot title keeps rewriting on top in livescript

1 visualización (últimos 30 días)
Daniel Joseph
Daniel Joseph el 22 de Nov. de 2022
Comentada: Daniel Joseph el 22 de Nov. de 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

Respuesta aceptada

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

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.

Productos


Versión

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by