如何将字符串转换为数字? number_of_plots = ' 4' 但我希望 4 没有''
Tabel_Cell = table2cell(diagramoptions) ;
idx= strfind(Tabel_Cell(:,1), 'number_of_plots');
idx = find(not(cellfun('isempty',idx)));
number_of_plots = Tabel_Cell{idx,2}
%number_of_plots1=double(number_of_plots);
%number_of_plots1=str2num(number_of_plots);
答案 0 :(得分:2)
您可以使用str2num
将字符串转换为数字。
如果您想将它们转换为花车,请使用比str2double
更快(更安全)的str2num