MATLAB: Generating a Vector with Step Size - Correct Syntax
This is not a valid syntax in MATLAB. The correct syntax for generating a vector from 1 to 360 with a step size of 10 would be:
x = 1:10:360;
This will create a vector 'x' with elements [1, 11, 21, ..., 351].
原文地址: https://www.cveoy.top/t/topic/ph9J 著作权归作者所有。请勿转载和采集!