How to load the data in this case?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
R7 DR
am 29 Mai 2015
Kommentiert: R7 DR
am 29 Mai 2015
As shown in the image there are two data sets 'a' and 'b'. How to load the data of 'b' into another variable, if a>0.1 and a<0.8?
Thanks
Thanks
0 Kommentare
Akzeptierte Antwort
Salaheddin Hosseinzadeh
am 29 Mai 2015
Hi,
Is that a excel file?! I don't get what you mean by loading.
If you just want to select some values do it like this.
c = a.*(a>0.1 & a<0.8);
So in variable c you will have what you want!
3 Kommentare
Salaheddin Hosseinzadeh
am 29 Mai 2015
Bearbeitet: Salaheddin Hosseinzadeh
am 29 Mai 2015
So your data is already loaded into MATLAB. your question is not on how to load the data to MATLAB.
f = a.*(a>0.2 & a<0.7)
c = find(logical(f) == 1)
something like this should give you an answer
or
f = a.*(a>0.2 & a<=0.7) % if you also want 7 to be in c
c = find(logical(f) == 1)
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Data Import from MATLAB finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!