Help with my program in MATLAB CODE:
이전 댓글 표시
HI! I have my program already done, but I need to change to this: The program calculates the sequence of Fibonacci, but i need in it, the following: [I need this in my program]Write a program that asks the user a limit number (> 4) to generate the Fibonacci sequence. The program must calculate the terms of the series and graph them without exceeding the limit number entered by the user. For example, if the user enters 9, the program will calculate the series: 0, 1, 1, 2, 3, 5, 8.% Thanks a lot!
%MY PROGRAM
N=input('Pick a number\n'); %N is the terms, I need to change this in a limit
fib=zeros(1,N);
fib(1)=0;
fib(2)=1;
figure;
for k=3:N
fib(k)=fib(k-2)+fib(k-1);
end
fprintf('The Fibonacci sequence to %d terms is\n',N);
fprintf('%g ',fib);
fprintf('\n');
v=1:N;
% create subplot
figure
% first subplot
subplot(1,2,1)
plot(v,fib,'-o')
title('SubPlot 1')
%second subplot
subplot(1,2,2)
semilogy(v,fib, '-o')
title('SubPlot 2')
채택된 답변
추가 답변 (1개)
카테고리
도움말 센터 및 File Exchange에서 Graphics Objects에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!