Replacing the contents of a matrix
1 次查看(过去 30 天)
显示 更早的评论
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
0 个评论
采纳的回答
Star Strider
2016-1-30
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;
更多回答(1 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Resizing and Reshaping Matrices 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!