Why won't my function graph?

3 views (last 30 days)
Ethan Gomez
Ethan Gomez on 4 Dec 2021
Commented: Ethan Gomez on 4 Dec 2021
x = linspace(0,10,100);
y = 3*exp(-x/3)*sin(pi*x);
plot(x, y)
xlabel('Time in Seconds')
ylabel('Voltage over time')

Answers (1)

Voss
Voss on 4 Dec 2021
You have to use .* (element-wise multiplication) rather than * (matrix multiplication):
y = 3*exp(-x/3).*sin(pi*x);

Categories

Find more on Graph and Network Algorithms in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!