How to strrep only certain strings
8 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Michael Boyle
am 18 Okt. 2021
Bearbeitet: Bruno Luong
am 18 Okt. 2021
I have a cell array with values like e-.00085 and 8.5e-4. I am trying to replace the 'e' with nothing '' in the value with the leading e, while leaving the scientific notation e alone.
x = ['e-.00085';'8.5e-4'];
strrep(x,'e','');
desired_final_ans = ['-.00085';'8.5e-4'];
Is there a way to determine in an if statement whether the cell begins with an 'e'?
2 Kommentare
Bruno Luong
am 18 Okt. 2021
Bearbeitet: Bruno Luong
am 18 Okt. 2021
The questions are not the same strickly speaking.
Akzeptierte Antwort
Weitere Antworten (1)
Siehe auch
Kategorien
Mehr zu Get Started with 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!