How to divide this array problem ?

3 visualizzazioni (ultimi 30 giorni)
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 ,,,

Risposta accettata

monika shivhare
monika shivhare il 7 Giu 2018
data = [6 7 5 3 4 1 2];
dataA =[data(1) data(2:2:end)];
dataB =[data(1:2:end)];
  2 Commenti
Muhammad Hafiz
Muhammad Hafiz il 7 Giu 2018
Modificato: Muhammad Hafiz il 7 Giu 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 il 7 Giu 2018
Modificato: monika shivhare il 7 Giu 2018
dataA=dataA(2:end);
dataB=dataB(2:end);
alternatively, use
dataA(1)=[];
dataB(1)=[];

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Earth, Ocean, and Atmospheric Sciences in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by