photo

Kishore


Last seen: 10日 前 2023 年からアクティブ

Followers: 0   Following: 0

統計

All
MATLAB Answers

0 質問
3 回答

Cody

0 問題
1 解答

ランク
135,614
of 297,503

評判
0

コントリビューション
0 質問
3 回答

回答採用率
0.00%

獲得投票数
0

ランク
 of 20,449

評判
N/A

平均評価
0.00

コントリビューション
0 ファイル

ダウンロード
0

ALL TIME ダウンロード
0

ランク
112,529
of 159,017

コントリビューション
0 問題
1 解答

スコア
20

バッジ数
1

コントリビューション
0 投稿

コントリビューション
0 パブリック チャネル

平均評価

コントリビューション
0 ハイライト

平均いいねの数

  • Solver
  • First Answer

バッジを表示

Feeds

表示方法

解決済み


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

約1年 前

回答済み
I can't deal with this code.Please help me:)
clear all; close all; clc; n= input("Enter an number to calculate its fibonacci number: ") F = [1 1]; % Initially F has ...

1年以上 前 | 0

回答済み
Fibonacci and Golden Ratio
fib=[0 1]; i=3; while(i<=21) fib(i)=fib(i-1)+fib(i-2); gr=fib(i)/fib(i-1) i=i+1; end disp(fib)

1年以上 前 | 0

回答済み
For loop for fibonacci series
fib=[]; fib(1)=0; fib(2)=1; for i=3:10 fib(i)=fib(i-1)+fib(i-2); end disp(fib)

1年以上 前 | 0