Why am i getting complex number?
3 ビュー (過去 30 日間)
古いコメントを表示
pos =zeros(num,2);
for j=1:num
pos(j,1)= 200*rand(1);
pos(j,2) = 200*rand(1);
end
I was trying to get positions and i am getting complex number in workspace. When i tried to display, it was real number. Why is workspace storing complex number?
1 件のコメント
Fangjun Jiang
2023 年 3 月 29 日
What do you mean? You can run it here and see results.
num=3;
pos =zeros(num,2);
for j=1:num
pos(j,1)= 200*rand(1);
pos(j,2) = 200*rand(1);
end
pos
回答 (1 件)
Fangjun Jiang
2023 年 3 月 29 日
Are you sure you got complex numbers? Complex numbers are like below.
clear i j;
i
j
a=2+3i
b=4-5j
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Startup and Shutdown についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!