array errors using n

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]

답변 (1개)

madhan ravi
madhan ravi 2020년 6월 23일
편집: madhan ravi 2020년 6월 23일

0 개 추천

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

Robert Tapia
Robert Tapia 2020년 6월 23일
what if i wasnt given a value for n which is what has me kinda connfused
madhan ravi
madhan ravi 2020년 6월 23일
See my edited answer
Robert Tapia
Robert Tapia 2020년 6월 23일
can you explain what syms does, i havent covered it yet and i also get error 'requires symbolic math toolbox when running it ?
madhan ravi
madhan ravi 2020년 6월 23일
편집: madhan ravi 2020년 6월 23일
https://www.mathworks.com/help/symbolic/syms.html#description , yes it does require a Symbolic Toolbox, however if your University have access to MATLAB Online , you could try it there.
Robert Tapia
Robert Tapia 2020년 6월 23일
i'm using matlab r2019b thru a remote server
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.

이 질문은 마감되었습니다.

질문:

2020년 6월 23일

마감:

2021년 8월 20일

Community Treasure Hunt

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

Start Hunting!

Translated by