replace nonzero element of matrix with vector
2 次查看(过去 30 天)
显示 更早的评论
Hello I have matrix A:
A=[2 3 0 0;6 0 2 4;1 2 0 7]
I want to replace nonzero element of this matrix with matrix B respectively. matrix B is:
B=[70;11;111;8;7;22;15;64]
Thank you.
2 个评论
Stephen23
2015-11-19
编辑:Stephen23
2015-11-19
@fatema saba: you do not need to use find, it just makes the code slower and more complicated without any benefit. It is better to use logical indexing, as per Walter Roberson's answer.
回答(1 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Matrix Indexing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!