plot with text function

4 visualizaciones (últimos 30 días)
Francesco
Francesco el 27 de Feb. de 2024
Comentada: Sam Chak el 27 de Feb. de 2024
Hello everyone. I will try to explain my matlab question. I need to use text function in one plot. I've used this function to plot all the lines:
text(ToH_v(1),SAT_disponibili(k),str,'FontSize',3.5, 'FontWeight','bold')
The problem is that I need all different lines coincide with the right edge of the grid (no empty space). I've tried to modified the FrontSize but I think it only can be multiple of 0.5. ( for example with FrontSize 3.5 and 3.7 the plot is the same). How Can I solve this problem? I've indicated the white space with the vertical arrow.
Is also possibile to remove the grid on the edge? Indicated with the horizontal arrow?
Thank you in advance.
  4 comentarios
Aquatris
Aquatris el 27 de Feb. de 2024
Depends on the problem but one way to remove the white space at the right side of the figure is using the xlim() function to adjust the x-axis to desired range.
Francesco
Francesco el 27 de Feb. de 2024
I need that all the right edges of the lines coincide with value 24 of x axis and the left edges coincide with 0 of x axis.

Iniciar sesión para comentar.

Respuestas (1)

Sam Chak
Sam Chak el 27 de Feb. de 2024
@Francesco, do you want to display the figure without tick marks?
ax = axes(figure()); % create axes handle
plot(0:10); xlabel x, ylabel y
set(ax, 'XTick', []);
set(ax, 'YTick', []);
  2 comentarios
Francesco
Francesco el 27 de Feb. de 2024
I want the value 2 4 6 ... in the x axes and 0 1 2 3 4..... in the y axis but without the edge grid.
Sam Chak
Sam Chak el 27 de Feb. de 2024
One side effect of disabling the tick marks is that the tick labels also disappear. Without the tick marks, the tick labels lose their significance. What do you think about this "box-off" approach?
plot(0:10, 0:10)
box off
xticklabels({'0', '2', '4', '6', '8', '10'})

Iniciar sesión para comentar.

Categorías

Más información sobre Axis Labels en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by