Help with Graphing Difference Equations
Mostra commenti meno recenti
I'm trying to graph these and a hint was given to use the power and semilogy functions. General advice or help with a) would be appreciated!

2 Commenti
Davide Masiello
il 1 Ott 2022
Hi @McKenna Mason, it is costumary on this forum that you share your attempt at coming up with a code.
McKenna Mason
il 1 Ott 2022
Risposta accettata
Più risposte (1)
syms x n a b
f = x^2-5*x+6;
xsol = solve(f==0);
y = a*xsol(1)^n + b*xsol(2)^n
csol = solve([subs(y,n,0)==2,subs(y,n,1)==5],[a,b])
y = subs(y,[a,b],[csol.a,csol.b])
simplify(subs(y,n,n)-5*subs(y,n,n-1)+6*subs(y,n,n-2))
Categorie
Scopri di più su Mathematics and Optimization 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!



