is n>=0.Inline function is not working properly
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Rafael Perales
am 25 Okt. 2019
Beantwortet: Guillaume
am 25 Okt. 2019
So I am trying to make a stem graph and the text book uses inline to create a function for discrete time function but I keep having errors using it. The function is
i just want to know for either an alternative or why the inline function isnt working with my code. Snippet of code not working:
i just want to know for either an alternative or why the inline function isnt working with my code. Snippet of code not working: n = -10:10;
f = inline('e^(-n/5).*cos(pi*n/5).*(n>=0)','n');
stem(n,f(n),'k');
0 Kommentare
Akzeptierte Antwort
Guillaume
am 25 Okt. 2019
f = @(n) exp(-n/5) .* cos(pi*n/5) .* (n>=0);
assuming
is n>=0.
is n>=0.0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Function Creation finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!