'Store the first N (user enters N) Fibonacci numbers in a row vector.'I know how to get user entered number of fibbonachi numbers. But I don't know how to show them in a row vector.

조회 수: 9 (최근 30일)
clc;
clear;
close all;
N=input('Enter the number = ');
B(1)=0;
B(2)=1;
count=1;
for i=3:N
B(1,i)=B(i-2)+B(i-1);
end
disp(B)

채택된 답변

JESUS DAVID ARIZA ROYETH
JESUS DAVID ARIZA ROYETH 2019년 12월 7일
clc
N=input('Enter the number = ');
B=zeros(1,N);
B(1)=0;
B(2)=1;
count=1;
for i=3:N
B(1,i)=B(i-2)+B(i-1);
end
disp(B)
  댓글 수: 3
JESUS DAVID ARIZA ROYETH
JESUS DAVID ARIZA ROYETH 2019년 12월 7일
yes but I get:
Enter the number = 10
0 1 1 2 3 5 8 13 21 34
in any case, to get rid of the second column use:
B(:,2)=[]

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by