Range of values using increments

Can someone explain to me how I can come up with a way to create a sequence of numbers starting from 0, and incrementing by say 5, and stopping at a certain specified number say 20? I know how to do this in coding languages like python but is it possible to do this in matlab? in python it would be something simple like
if i in range(0,5,20):

답변 (1개)

DGM
DGM 2021년 4월 29일
편집: DGM 2021년 4월 29일

0 개 추천

If you want a specific spacing:
x = startnum:stepsize:endnum
for example:
0:5:20
gives
ans =
0 5 10 15 20

카테고리

도움말 센터File Exchange에서 Call Python from MATLAB에 대해 자세히 알아보기

질문:

2021년 4월 29일

편집:

DGM
2021년 4월 29일

Community Treasure Hunt

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

Start Hunting!

Translated by