Having trouble plotting function

>> t = linspace(0,0.001,1);
>> i = 0.015+exp(-10000*t)(-0.01*cos(20000*t)-0.0025*sin(20000*t));
Error: Invalid array indexing.
New to MATLAB, trying to plot a graph but function gets interpreted as array.

Respuestas (1)

KSSV
KSSV el 9 de Jun. de 2022
t = linspace(0,0.001);
F = 0.015+exp(-10000*t).*(-0.01*cos(20000*t)-0.0025*sin(20000*t)); %<-- you missed .*
plot(t,F)

Categorías

Productos

Versión

R2021b

Etiquetas

Preguntada:

el 9 de Jun. de 2022

Respondida:

el 9 de Jun. de 2022

Community Treasure Hunt

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

Start Hunting!

Translated by