How do I write an inductive sequence?
조회 수: 8 (최근 30일)
이전 댓글 표시
I need to put in the sequence x(subscriptn)=4x(subscript n-1)[1-x(subscript n-1)]. I have x0.
댓글 수: 2
John D'Errico
2020년 4월 12일
I would point out that everything you need to know about something basic like this is already explained in depth, in the getting started tutorials.
In there, you will learn what a vector is. How to index a vector. How to write a loop.
I know. Reading the manual is boring. They put all that useful information in there, and you are in a hurry, so we need to re-write the manual for you, one part at a time.
채택된 답변
Torsten
2020년 4월 12일
N = 10; % define number of recurrence terms to be calculated
x = zeros(N,1);
x(1) = 3; % define x0
for n = 2:N
x(n) = 4*x(n-1) * (1 - x(n-1)); %calculate the xi
end
x
추가 답변 (0개)
참고 항목
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!