How can I represent this equation on MATLAB

1 visualización (últimos 30 días)
Ibrahim swidan
Ibrahim swidan el 28 de Abr. de 2022
Comentada: Ibrahim swidan el 30 de Abr. de 2022
How can I represent this equation on MATLAB
𝑌[𝑛]=3𝑛2−1 𝑤ℎ𝑒𝑟𝑒 −2≤𝑛<3
  2 comentarios
Mahmoud Ashraf
Mahmoud Ashraf el 28 de Abr. de 2022
Editada: Mahmoud Ashraf el 28 de Abr. de 2022
can u rewrite the equation?

Iniciar sesión para comentar.

Respuesta aceptada

Mahmoud Ashraf
Mahmoud Ashraf el 28 de Abr. de 2022
if i read the equation corrently this code with product the value of y in vector
clear all;
clc
for n=-2:3
y(1,n+3)=3*(n^2)-1;
end

Más respuestas (0)

Categorías

Más información sobre Get Started with MATLAB 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