Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
例如,我有一个输入 3.142,我可以使用什么命令来确定数字字符串的数量。在这种情况下,我希望得到像 5 这样的小数点。更多例如喜欢,
12.3 然后将得到 4 的输出 12.345 将得到 6 的输出
12.3 然后将得到 4 的输出
12.345 将得到 6 的输出
您可以使用该length功能。
length
myNumberString = '12.3456'; disp(length(myNumberString));
在上面的代码中,您应该7在运行它时显示在命令窗口中。
7