How to add values ​​to a vector

2 views (last 30 days)
Lev Mihailov
Lev Mihailov on 9 Jul 2019
Edited: KSSV on 9 Jul 2019
Hello! I have the values ​​obtained from the matrix E = 1x11004, with some operations in the loop I need to remove the last values, can I do 1x11004 + 2 = 1x11006. My last values ​​are 200 201 200 203, and I want to do 200 201 200 203 0 0

Accepted Answer

KSSV
KSSV on 9 Jul 2019
Edited: KSSV on 9 Jul 2019
To add/ append
A = rand(1,10) ;
B = zeros(1,2) ;
iwant = [A B]
To Remove
A = rand(1,12)
A(11:12) = []

More Answers (0)

Categories

Find more on Get Started with MATLAB in Help Center and File Exchange

Tags

Products

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!