how can i create a new Matrix

how can i create a new matrix with multiples of 0.025 with dimensions [766525*1]
required matrix
[0
0.025
0.05
0.075
0.1
0.125
.
.
.
. . ]

 Accepted Answer

Azzi Abdelmalek
Azzi Abdelmalek on 15 Feb 2013
Edited: Azzi Abdelmalek on 15 Feb 2013
pas=0.025
n=766525
A=(0:pas:(n-1)*0.025)'
%or
linspace(0,(n-1)*pas,n)'

4 Comments

i get a [1*766525] matrix
i am unable to generate a matrix and matlab automatically shuts down
i got the result
thanks a lot

Sign in to comment.

More Answers (0)

Categories

Tags

Community Treasure Hunt

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

Start Hunting!