How can I selectively multiplying the negative values with (-1) in an excel file?
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hi everyone, I'm trying to read an excel file which has two columns and I want to multiply the negative values of column 2 with (-1). Could anyone please help me with a code to do that? Thank you!
0 commentaires
Réponses (2)
Star Strider
le 11 Nov 2023
Modifié(e) : Star Strider
le 11 Nov 2023
Multiplying the negative values of column 2 by -1 will of course create them as positive values for all the entries.
0 commentaires
dpb
le 11 Nov 2023
Modifié(e) : dpb
le 11 Nov 2023
data=readmatrix('yourExcelfile.xlsx');
isneg=(data(:,2)<0);
data(isneg,2)=-data(isneg,2);
"Use the Force, Luke!" Here "the Force" is logical indexing, one of the most powerful features in MATLAB.
That is, of course, if you really want/need to negate a specific subset; as @Star Strider notes, for the specific operation it is the equivalent of taking the absolute value of the column in which case you can save the extra step of the indexing expression --
data=readmatrix('yourExcelfile.xlsx');
data(:,2)=abs(data(:,2));
0 commentaires
Voir également
Catégories
En savoir plus sur Data Import from MATLAB dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!