Not enough input arguments error when using exp

16 次查看(过去 30 天)
Hi, I am very new to matlab and I and getting the 'not enough input arguments when typing this.
EDU>> syms x
EDU>> f = 5*exp^(2*x - sin(x^2))
Any help is appreciated.
Thanks

采纳的回答

José-Luis
José-Luis 2013-1-10
编辑:José-Luis 2013-1-10
That's because you are not passing any arguments to the exp() function. You probably meant:
f = 5*exp(2*x - sin(x^2));
Or if you meant the number e:
f = 5*exp(1)^(2*x - sin(x^2));

更多回答(1 个)

Robbie
Robbie 2013-1-10
Thanks

类别

Help CenterFile Exchange 中查找有关 Linear Algebra 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by