필터 지우기
필터 지우기

Using a fucntion in loop

조회 수: 1 (최근 30일)
Berkay
Berkay 2022년 9월 1일
편집: Torsten 2022년 9월 1일
I defined this;
P = [1 -2 4]
I want to find nth derivative of this poly and I want to do it with while loop for example I try this;
a = 0;
n = 3;
while(a < n)
polyder(P)
a=a+1;
end
The result is
ans =
2 -2
ans =
2 -2
ans =
2 -2
Why does the program take derivative of the poly at first but it does not for the rest of it?

채택된 답변

Torsten
Torsten 2022년 9월 1일
편집: Torsten 2022년 9월 1일
P = [1 -2 4]
P = 1×3
1 -2 4
a = 0;
n = 3;
while(a < n)
P = polyder(P)
a = a + 1;
end
P = 1×2
2 -2
P = 2
P = 0

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by