How can i use the roots function to show that all the roots of a complex number lie on a square
2 ビュー (過去 30 日間)
古いコメントを表示
Basically i have the polynomial x^4 -16=0, and I want to plot a square showing that the roots of the polynomial represent a square. Thanks!
3 件のコメント
採用された回答
James Tursa
2018 年 11 月 16 日
編集済み: James Tursa
2018 年 11 月 16 日
You are really only missing one piece to get the lines plotted. To plot the lines between the points, you first need to order the points so that the connections are along the square edges like you want. A simple way to do this is to sort by phase angle first, then add an extra point to connect the last line. E.g.,
p = [1 0 0 0 -16];
r = roots(p);
[~,a] = sort(angle(r)); % Sort by phase angle
x = real(r); x = x(a); x(end+1) = x(1); % reorder according to sort indexing, add an extra point
y = imag(r); y = y(a); y(end+1) = y(1); % reorder according to sort indexing, add an extra point
plot(x,y,'*-');
axis square
xlim([-3 3]);
ylim([-3 3]);
0 件のコメント
その他の回答 (1 件)
Mark Sherstan
2018 年 11 月 16 日
Try this out:
corners = roots([1 0 0 0 -16]);
x = real(corners);
y = imag(corners);
figure(1)
plot(x,y,'*r')
xlim([-4 4])
ylim([-4 4])

0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Polynomials についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!