Multiplying a column in a table by a constant
36 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Timothy
am 17 Aug. 2023
Kommentiert: Voss
am 7 Sep. 2024
Hello,
I need to multiply a one-column table by e^-9. I don't know MATLAB code, so this is new to me. How can I do this please, any help would be appreciated.
Thank you,
Tim
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 17 Aug. 2023
Bearbeitet: Walter Roberson
am 18 Aug. 2023
YourTableName.NameOfColumn = YourTableName.nameOfColumn * 1e-9;
The above is the recommended form.
If, for some reason, you do not know hte column name, but you know the column number, then
YourTableName.(ColumnNumber) = YourTableName.(ColumnNumber) * 1e-9;
3 Kommentare
Zachary
am 7 Sep. 2024
I am trying to change units in my column. I want to go from mm to cm, so I just divide by 10. At the same time, I want to keep the original column value. How would you do that?
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Resizing and Reshaping Matrices 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!