Info

La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.

array errors using n

2 visualizaciones (últimos 30 días)
Robert Tapia
Robert Tapia el 23 de Jun. de 2020
Cerrada: MATLAB Answer Bot el 20 de Ag. de 2021
still new to matlab, so I'm asked to create an array from -5n to 5n with increments of n/100.
im not sure how to properly incorporate n into the array.
Array = [-5n: n/100: 5n]

Respuestas (1)

madhan ravi
madhan ravi el 23 de Jun. de 2020
Editada: madhan ravi el 23 de Jun. de 2020
n = 3; % a number
Array = -5*n: n/100: 5*n % you were close
% or perhaps
syms n
Array = -5*n: n/100: 5*n
  6 comentarios
Robert Tapia
Robert Tapia el 23 de Jun. de 2020
i'm using matlab r2019b thru a remote server
madhan ravi
madhan ravi el 23 de Jun. de 2020
Try this:
Array = @(n) -5*n: n/100: 5*n
If you don’t think this is what you want , nothing in MATLAB can give what you want.

La pregunta está cerrada.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by