Unsure what I did wrong

I want to plot a graph of y against x:
x=[0:2*pi]
y=exp(1)^x
plot(x,y)
But this error showed:
Error using ^ (line 51)
Incorrect dimensions for raising a matrix to a power. Check that the matrix is
square and the power is a scalar. To perform elementwise matrix powers, use '.^'.

 Accepted Answer

x=0:.01:2*pi;
y=exp(1).^x;
plot(x,y)

2 Comments

what does the change mean? thanks
.^ needed for element-wise array operations
0:.01:2*pi splits up the interval into finer steps for plotting

Sign in to comment.

More Answers (1)

Don't try to raise exp(1) to the power of x. Just use exp on the array x directly.
x = 1:5;
y = exp(x);

Categories

Find more on Mathematics in Help Center and File Exchange

Tags

Asked:

on 15 Feb 2020

Commented:

on 16 Feb 2020

Community Treasure Hunt

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

Start Hunting!