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!