for example :
data = [6
7
5
3
4
1
2]
dataA = [6 7 3 1]
dataB = [6 5 4 2]
please I little bit confuse about this ,,,

 Akzeptierte Antwort

monika shivhare
monika shivhare am 7 Jun. 2018

1 Stimme

data = [6 7 5 3 4 1 2];
dataA =[data(1) data(2:2:end)];
dataB =[data(1:2:end)];

2 Kommentare

Muhammad Hafiz
Muhammad Hafiz am 7 Jun. 2018
Bearbeitet: Muhammad Hafiz am 7 Jun. 2018
thanks monica you help me ,,,
after dataA and dataB get the array ,,
how to remove, for example: dataA = [6 7 3 1] dataB = [6 5 4 2]
to
dataA = [7 3 1] dataB = [5 4 2]
monika shivhare
monika shivhare am 7 Jun. 2018
Bearbeitet: monika shivhare am 7 Jun. 2018
dataA=dataA(2:end);
dataB=dataB(2:end);
alternatively, use
dataA(1)=[];
dataB(1)=[];

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Language Fundamentals finden Sie in Hilfe-Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by