how to create a complex number: j(number)
显示 更早的评论
i want create complex number in my m file code how i can do this : a= j(number)
1 个评论
Jiro Doke
2012-2-19
Changing the title to make it more descriptive.
回答(2 个)
Walter Roberson
2012-2-19
a = 3 + 5j;
or
a = 3 + 5*j;
or
a = complex(3,5);
behnam
2012-2-19
1 个评论
Matt Kindig
2012-2-19
Neither is correct. Both j and i are constants (sqrt(-1)), not functions, so that are not called like this. Instead:
a=input('enter a');
t=j*(a/20)
类别
在 帮助中心 和 File Exchange 中查找有关 Data Types 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!