Answers for "exponential matlab"

1

exponential matlab

Y = exp(X)

For complex elements z = x + iy
exp(z) will return e^x(cos(y)+isin(y))
Posted by: Guest on May-08-2021
0

exponential function matlab

function [ y ] = exponential( x )
y = exp(x);

end
Posted by: Guest on October-15-2021

Browse Popular Code Answers by Language