photo

Kishore


Last seen: 5 mesi fa Attivo dal 2023

Followers: 0   Following: 0

Statistica

All
MATLAB Answers

0 Domande
3 Risposte

Cody

0 Problemi
1 Soluzione

RANK
138.515
of 300.015

REPUTAZIONE
0

CONTRIBUTI
0 Domande
3 Risposte

ACCETTAZIONE DELLE RISPOSTE
0.00%

VOTI RICEVUTI
0

RANK
 of 20.862

REPUTAZIONE
N/A

VALUTAZIONE MEDIA
0.00

CONTRIBUTI
0 File

DOWNLOAD
0

ALL TIME DOWNLOAD
0

RANK
129.251
of 166.984

CONTRIBUTI
0 Problemi
1 Soluzione

PUNTEGGIO
20

NUMERO DI BADGE
1

CONTRIBUTI
0 Post

CONTRIBUTI
0 Pubblico Canali

VALUTAZIONE MEDIA

CONTRIBUTI
0 Punti principali

NUMERO MEDIO DI LIKE

  • Solver
  • First Answer

Visualizza badge

Feeds

Visto da

Risolto


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:...

oltre un anno fa

Risposto
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 ...

circa 2 anni fa | 0

Risposto
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)

circa 2 anni fa | 0

Risposto
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)

circa 2 anni fa | 0