how make this eq.
Info
Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.
Ältere Kommentare anzeigen
hi please can tell me how make this eq. in matlab

where n start from 2 , m&c constant value
2 Kommentare
KSSV
am 19 Aug. 2020
m and c are vector right? how about x?
Wisal Adnan
am 19 Aug. 2020
Antworten (1)
Payam Morsali
am 18 Okt. 2020
0 Stimmen
for series you can set a variable to zero and iterate the sum:
fibonacci for example:
a(1)=1
a(2)=1
for i=3:n
a(i)=a(i-1)+a(i-2)
end
Diese Frage ist geschlossen.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
