Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

regarding plotTING DATA in matlab

1 vue (au cours des 30 derniers jours)
Udit Narayan
Udit Narayan le 27 Mai 2020
Clôturé : MATLAB Answer Bot le 20 Août 2021
can you tell me how to display maximum value of y in the top right corner of graph when i have a n*1 size column vector of y and n*1 size column vector for x .And y is independent of x

Réponses (1)

KSSV
KSSV le 27 Mai 2020
% Random data for demo
n = 100 ;
x = 1:n ;
y = rand(size(x)) ;
% plot
plot(x,y)
lgd = ['ymax = ',num2str(max(y))] ;
legend(lgd)
Alternatively you can also use text. For this you have to specify the location where you want to display the value.

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by