Azzera filtri
Azzera filtri

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

1 visualizzazione (ultimi 30 giorni)
lakom Mariem
lakom Mariem il 15 Lug 2017
Risposto: Akira Agata il 16 Lug 2017
I want to plot the equation y=exp(-(K-1)) in matlab..can anyone help me please

Risposta accettata

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

Più risposte (1)

James Tursa
James Tursa il 15 Lug 2017

Categorie

Scopri di più su 2-D and 3-D Plots in Help Center e File Exchange

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by