Creating empty matrix with data in 1 cell
显示 更早的评论
I want to generate an empty MATRIX containing all zeros apart from 1 or 2 cells which i want to assign a value to. Currently im using M = zeros(1,100); which generates my empty matrix but im unsure how to then assign a value to one of those cells.
回答(1 个)
M = zeros(1,100);
M(1,2:3) = 5% say 5
assign value of 5 to elements 2 and 3 in array
3 个评论
Ross Thompson
2022-2-14
Ross Thompson
2022-2-15
VBBV
2022-2-15
M = zeros(1,100);
M(1,[2:3 10 20 30]) = 5% say 5
Set value of 5 to elements 2,3 10, 20, and 30. By brackets []
类别
在 帮助中心 和 File Exchange 中查找有关 Creating and Concatenating Matrices 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!