Effacer les filtres
Effacer les filtres

How to plot this equation y=exp(-(K-1))

1 vue (au cours des 30 derniers jours)
lakom Mariem
lakom Mariem le 15 Juil 2017
I want to plot the equation y=exp(-(K-1)) in matlab..can anyone help me please

Réponse acceptée

Akira Agata
Akira Agata le 16 Juil 2017
Or, simply plot your function, like:
K = linspace(0,10,100);
y = exp(-(K-1));
plot(K,y);

Plus de réponses (1)

James Tursa
James Tursa le 15 Juil 2017

Catégories

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

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by