decimal number as filed name of a structure
5 次查看(过去 30 天)
显示 更早的评论
how can I set this as field name ? since it has a decimal in it , Matlab doesn't accept it to be field name . If i could get rid of the dot, it works but i don't know how ?
'One_IMj_4_Story_Selected_Records_Set_0.01SA_0.99dNSA'.
0 个评论
采纳的回答
the cyclist
2018-1-3
You could find and replace the dots ...
fn = 'One_IMj_4_Story_Selected_Records_Set_0.01SA_0.99dNSA'
fn2 = regexprep(fn,'\.','_dot_')
fn2 =
'One_IMj_4_Story_Selected_Records_Set_0_dot_01SA_0_dot_99dNSA'
0 个评论
更多回答(1 个)
Steven Lord
2018-1-3
An alternative to regexprep is matlab.lang.makeValidName. A benefit of makeValidName is that you don't have to explicitly list all the possible invalid characters in your field name and their replacements. It doesn't care if the input is:
'One_IMj_4_Story_Selected_Records_Set_0.01SA_0.99dNSA' (periods)
'One_IMj_4_Story_Selected_Records_Set @ 0.01SA_0.99dNSA' (periods and @ symbol)
'1_IMj_4_Story_Selected_Records_Set_0.01SA_+ 0.99dNSA' (invalid first character, periods, space, and +)
etc.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Whos 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!