How can I write this exponential function in matlab
显示 更早的评论
回答(2 个)
Ameer Hamza
2020-6-27
编辑:Ameer Hamza
2020-6-27
One way to write this is to create an anonymous function
f = @(t) 0.2*exp(-1i*(8*pi*t-pi/2))+0.585*exp(-1i*(7*pi*t-deg2rad(78.69)));
and then run it like this
>> f(0)
ans =
0.1147 + 0.7736i
>> f(1)
ans =
-0.1147 - 0.3736i
>> f(2)
ans =
0.1147 + 0.7736i
>> f(pi)
ans =
0.0177 + 0.3937i
Read here about anonymous function: https://www.mathworks.com/help/matlab/matlab_prog/anonymous-functions.html
Alternatively, create a function file named myFun.m (or whatever you want. The name of file and function must be same) and define a function like this
function y = myFun(t)
y = 0.2*exp(-1i*(8*pi*t-pi/2))+0.585*exp(-1i*(7*pi*t-deg2rad(78.69)));
end
and then you can call it like this myFun(0), myFun(pi), etc.
Hamed
2024-2-3
0 个投票
how i "exp(u(1))" and (u(1^3)) function setting! thanks
1 个评论
Walter Roberson
2024-2-3
u(1^3) does not make any sense?
exp(u(1))
exp(u(1)^3)
exp(u(1))^3
类别
在 帮助中心 和 File Exchange 中查找有关 Loops and Conditional Statements 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!