how to get variable value in plot automatically

2 vues (au cours des 30 derniers jours)
Pallanti Srinivasa Rao
Pallanti Srinivasa Rao le 26 Août 2019
Réponse apportée : KSSV le 26 Août 2019
how to get a plot displaying value ofgain_resp.png gain and corresponding responce in single figure as shown in attached image

Réponses (1)

KSSV
KSSV le 26 Août 2019
x = 0:10 ;
figure
hold on
for i = 1:3
y = i*x ;
plot(x,y)
end
legend
OR
x = 0:10 ;
figure
hold on
for i = 1:3
y = i*x ;
plot(x,y)
str = ['k=',num2str(i)] ;
text(mean(x),mean(y),str)
end

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by