Home /
Expert Answers /
Computer Science /
i-wish-to-create-a-matrix-named-c-of-evenly-spaced-values-from-0-to-30-with-an-increment-of-3-whic-pa480
(Solved): I wish to create a matrix named c of evenly spaced values from 0 to 30 with an increment of 3.
Whic ...
I wish to create a matrix named c of evenly spaced values from 0 to 30 with an increment of 3.
Which of the following commands can I use?
c=[0:3:30]
c=linspace(0,30,11)
c=log10(logspace(0,30,11))
c=logspace(0,30,11)