Borrar filtros
Borrar filtros

Replacing the contents of a matrix

2 visualizaciones (últimos 30 días)
Dubstep Dublin
Dubstep Dublin el 30 de En. de 2016
Comentada: Star Strider el 30 de En. de 2016
I have a 1 dimensional matrix (1000 x 1) that consists of numbers from 0 to 63.
I would like to replace the contents of this matrix as follows:
0 --> 0
1 --> 0.5
2 --> 1
3 --> 1.5
and so on..
Can someone please show me how to do this.
Thanks

Respuesta aceptada

Star Strider
Star Strider el 30 de En. de 2016
It looks as though you’re just dividing every element by 2, and rounding to one decimal place.
Letting ‘v’ define your vector, this works:
Out = fix(5*v)/10;
  2 comentarios
Dubstep Dublin
Dubstep Dublin el 30 de En. de 2016
It works! Thanks a lot.
Star Strider
Star Strider el 30 de En. de 2016
My pleasure!

Iniciar sesión para comentar.

Más respuestas (1)

Azzi Abdelmalek
Azzi Abdelmalek el 30 de En. de 2016
v=[0 1 2 3 4 5]'
out=v*0.5

Categorías

Más información sobre Matrix Indexing en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by