Issue with vectors?
Informazioni
Questa domanda è chiusa. Riaprila per modificarla o per rispondere.
Mostra commenti meno recenti
How do I get this to work:
x = 0:.05:1;
y = exp(-2*x)*sin(x*10*pi);
It throws an error, but all I want it to do is give me an equivalent y matrix for my x matrix input. please help.
Risposte (1)
the cyclist
il 1 Nov 2019
Modificato: the cyclist
il 1 Nov 2019
Sorry to be snarky, but did you trying reading the error message? It tells you what to do right there.
x = 0:.05:1;
y = exp(-2*x).*sin(x*10*pi);
Note where I used .* instead of just *. (It's not necessary to do that for every instance of *, because in the other places you are simply multiplying by a scalar.)
Questa domanda è chiusa.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!