How to strrep only certain strings
8 ビュー (過去 30 日間)
古いコメントを表示
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 件のコメント
Bruno Luong
2021 年 10 月 18 日
編集済み: Bruno Luong
2021 年 10 月 18 日
The questions are not the same strickly speaking.
採用された回答
その他の回答 (1 件)
参考
カテゴリ
Help Center および File Exchange で Get Started with MATLAB についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!