how to replace 1 element in matrix
2 views (last 30 days)
Show older comments
I have matrix A and its a 4 by 5 I want to replace the element (3,4) and create a new matrix for it and name it B what would I do? D = A(3,4)=75 is what I have input but theres an error with to may = signs
0 Comments
Answers (2)
VBBV
on 27 Jan 2022
A = rand(4,5);
A(3,4) = 75;
D = A;
You can assign the new matrix to old one after replacing the value with 75. Read more info as @KSSV suggested
1 Comment
See Also
Categories
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!