help me pls, I want to plot

1 visualización (últimos 30 días)
Baraah Taha
Baraah Taha el 13 de Feb. de 2023
Comentada: Baraah Taha el 13 de Feb. de 2023
plot U_n = c*k^n for different ranges of k, namely, -1<=k<=1
  2 comentarios
Luca Ferro
Luca Ferro el 13 de Feb. de 2023
Editada: Luca Ferro el 13 de Feb. de 2023
what are the values of c and n?
And whats the step length of k?
Baraah Taha
Baraah Taha el 13 de Feb. de 2023
c = 1 or any constant belong in integer
n from 0 to 20
-1 <=k <=1

Iniciar sesión para comentar.

Respuestas (1)

Image Analyst
Image Analyst el 13 de Feb. de 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:

Categorías

Más información sobre Matrix Indexing en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by