Borrar filtros
Borrar filtros

Please Answer My Question

1 visualización (últimos 30 días)
mohammed khaled
mohammed khaled el 20 de Abr. de 2021
Respondida: Carlos Guerrero García el 13 de Nov. de 2022
Create a figure divided into four subplots. Sine(x), cosine(x), 𝑒−𝑥 and 𝑥3. Where x is vector from 0 to 2*pi, increasing by 0.1 The output should be:
  4 comentarios
mohammed khaled
mohammed khaled el 20 de Abr. de 2021
Editada: per isakson el 20 de Abr. de 2021
Walter Roberson
Walter Roberson el 20 de Abr. de 2021

Iniciar sesión para comentar.

Respuestas (1)

Carlos Guerrero García
Carlos Guerrero García el 13 de Nov. de 2022
x=0:0.1:2*pi;
subplot(2,2,1); plot(x,sin(x));
subplot(2,2,2); plot(x,cos(x));
subplot(2,2,3); plot(x,exp(-x));
subplot(2,2,4); plot(x,x.^3);

Community Treasure Hunt

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

Start Hunting!

Translated by