help me pls, I want to plot
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
plot U_n = c*k^n for different ranges of k, namely, -1<=k<=1
2 commentaires
Luca Ferro
le 13 Fév 2023
Modifié(e) : Luca Ferro
le 13 Fév 2023
what are the values of c and n?
And whats the step length of k?
Réponses (1)
Image Analyst
le 13 Fév 2023
c = 1;
n = 3;
k = linspace(-1, 1, 500);
U_n = c * k .^ n;
plot(k, U_n, '-', 'LineWidth', 2);
grid on
xlabel('k');
ylabel('U_n', 'Interpreter', 'none');
To learn other fundamental concepts, invest 2 hours of your time here:
0 commentaires
Voir également
Catégories
En savoir plus sur Matrix Indexing dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!