Making a 1D array/vector from a table

19 vues (au cours des 30 derniers jours)
Chris Dan
Chris Dan le 23 Jan 2021
Modifié(e) : Ive J le 23 Jan 2021
Hello,
I have this table or a 2D array
I want to seperate the numbers from the first column which have zero values in the third column. So in the end my result would be
x = [0; 0.0242; 0.3403]
Does anyone knows how it can be done ?

Réponse acceptée

Ive J
Ive J le 23 Jan 2021
Modifié(e) : Ive J le 23 Jan 2021
X = cell2mat(X_cell); % X_cell: your original cell
myVec = X(X(:, 3) == 0, 1);

Plus de réponses (0)

Catégories

En savoir plus sur Shifting and Sorting Matrices dans Help Center et File Exchange

Produits


Version

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by