Borrar filtros
Borrar filtros

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

1 visualización (últimos 30 días)
lakom Mariem
lakom Mariem el 15 de Jul. de 2017
Respondida: Akira Agata el 16 de Jul. de 2017
I want to plot the equation y=exp(-(K-1)) in matlab..can anyone help me please

Respuesta aceptada

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

Más respuestas (1)

James Tursa
James Tursa el 15 de Jul. de 2017

Categorías

Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by