Effacer les filtres
Effacer les filtres

how to make the label inside this graph that arrow sin(pi/2) and how to make the grid like tht blurry and no cut line

1 vue (au cours des 30 derniers jours)

Réponses (1)

Chunru
Chunru le 1 Jan 2022
Modifié(e) : Chunru le 1 Jan 2022
t = linspace(-pi, pi, 41);
x1 = sin(1*t);
x2 = sin(2*t);
plot(t, x1, 'bo-', t, x2, 'r*-');
grid on
pos = get(gca, 'Position');
xPosition = t(31); % 31st point
yPosition = x2(31);
% Coordinates in data units
ta1 = annotation('textarrow',...
[(xPosition +.5 + abs(min(xlim)))/diff(xlim) * pos(3) + pos(1),...
(xPosition + abs(min(xlim)))/diff(xlim) * pos(3) + pos(1) ],...
[(yPosition - min(ylim))/diff(ylim) * pos(4) + pos(2),...
(yPosition - min(ylim))/diff(ylim) * pos(4) + pos(2)]);
text(xPosition +.5 , yPosition, 'sin(\pi t/2)')
legend

Catégories

En savoir plus sur 2-D and 3-D Plots dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by