vlookup equivalent function in matlab to add data where an input exist
Afficher commentaires plus anciens
Hi,
I have the following problem and did not find any solution that is helping me to get the problem fixed.
First there is the vector with all the dates that exist
dates=[1 2 3 4 5 6 7 8 9 10]'
Now I like to create a 10x3 matrix with the dates as the first column:
dataFinal=zeros(length(dates),3);
dataFinal(:,1)=dates;
That's working fine. Now I'd like to fill this matrix dataFinal with values from other matrices, but only there where the first value of the new matrix (data1 or data 2) is equivalent with the first column of dataFinal
data1=[2 22; 3 24; 4 18; 6 22; 7 25; 9 32]
data2=[1 10; 3 14; 5 19; 6 8; 10 15]
The output should look as follows
dataFinal=[1 0 10; 2 22 0; 3 24 14;4 18 0; 5 0 19 and so on]
I tried to use ismember but I get some problems with the dimensions, because data1 and datafinal do not have the same number of rows
regards
Réponse acceptée
Plus de réponses (0)
Catégories
En savoir plus sur Logical dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!