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

 Réponse acceptée

KSSV
KSSV le 9 Juil 2019
Modifié(e) : KSSV le 9 Juil 2019

0 votes

To add/ append
A = rand(1,10) ;
B = zeros(1,2) ;
iwant = [A B]
To Remove
A = rand(1,12)
A(11:12) = []

Plus de réponses (0)

Catégories

En savoir plus sur Get Started with MATLAB dans Centre d'aide et File Exchange

Produits

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by