How to attach the element into correct index
1 view (last 30 days)
Show older comments
I HAVE VECTOR A = [0,540]
B = [60,600,15]
how to attach B(3) as A(3) ? //output should be A = [0,540,15]
how to attach B(1) as A(1) ? //output should be A = [60,600,15]
0 Comments
Answers (1)
Fangjun Jiang
on 25 May 2018
Edited: Fangjun Jiang
on 25 May 2018
A=[A,B(3)]
A(1,:)=B(1,:)
0 Comments
See Also
Categories
Find more on Matrix Indexing in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!