Simple question but i can't do it i just started using matlab

1 visualización (últimos 30 días)
how can i do this please help
0<a<1 and draw graph of y=a^x
  1 comentario
James Tursa
James Tursa el 4 de Oct. de 2022
What have you done so far? What specific problems are you having with your code? A single graph? Or multiple x-y graphs for various values of a? Or ...?

Iniciar sesión para comentar.

Respuesta aceptada

Benjamin Thompson
Benjamin Thompson el 4 de Oct. de 2022
x = 1:5;
a = 2;
y = a.^x;
plot(x, y);

Más respuestas (0)

Categorías

Más información sobre Directed Graphs en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by