create a row vector, named "wowsa", starting at 5, counting by 0.135, ending at 15. in matlab

To create a row vector named "wowsa" in MATLAB, starting at 5, counting by 0.135, and ending at 15, you can use the colon operator and the linspace function. Here is the code:

main.m
wowsa = 5 : 0.135 : 15;
24 chars
2 lines

This code creates a row vector named "wowsa" that starts at 5, increments by 0.135, and ends at 15.

related categories

gistlibby LogSnag