Info
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
Using array as a for loop
조회 수: 1 (최근 30일)
이전 댓글 표시
I need to solve the polynomial x^4+nx^3-1 for n=-1,0,1 (without using for loop)
What I did is:
n=(-1:1:1);
co_poly=[1 n 0 0 -1];
roots(co_poly)
but it just put the array n inside the coefficients array.
댓글 수: 0
답변 (1개)
Geoff Hayes
2016년 3월 13일
Harel - why don't you just iterate over each n and calculate the roots for that particular n? For example,
for n=-1:1:1
co_poly=[1 n 0 0 -1];
roots(co_poly)
end
댓글 수: 2
이 질문은 마감되었습니다.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!