Make Sequence Function go Diagonal
Mostra commenti meno recenti
Hi ,how would i make this function go diagonal?,any help would be great
n = input ('sequence_matrix_');
fibb=[1,3:n];
for i=3:n
fibb(i)=fibb(i-1)*3+(i)-2;
end
fibb
2 Commenti
Sam Chak
il 23 Nov 2023
The original question may be beneficial for people who wish to learn how to create a diagonal matrix.

Rena Berman
il 27 Nov 2023
(Answers Dev) Restored edit
Risposta accettata
Più risposte (1)
Walter Roberson
il 19 Lug 2021
n = input ('sequence_matrix_');
fibb = diag([1,3:n]);
for i=3:n
fibb(i,i) = fibb(i-1,i-1)*3+(i)-2;
end
fibb
Categorie
Scopri di più su Programming in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!