How can i changethe value at a position in an array
1 次查看(过去 30 天)
显示 更早的评论
Hello, i wanted to cahnge some values in an array but could not do it, can you help me? Thanks in advance.
k=zeros(201);
k(0)=0;
k(101)=1;
k(201)=2;
0 个评论
采纳的回答
Star Strider
2021-6-20
The ‘k’ array is a (201x201) array of zeros. The code likely works correctly, however using a single index into an array uses linear indexing. To understand the row and column assignments for element 101 and 201, use the ind2sub function:
k = zeros(201)
k(101)=1;
[r1,c1] = ind2sub(size(k), 101)
k(r1,c1)
k(201)=2;
[r2,c2] = ind2sub(size(k), 201)
k(r2,c2)
0 个评论
更多回答(0 个)
另请参阅
类别
在 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!