how to count a number of digits.

10 次查看(过去 30 天)
How to count a number of digits in a given number withoud using numel and length(num2string()). probably use for loop or while loop.

采纳的回答

Walter Roberson
Walter Roberson 2011-11-3
Well, there is log10(). Or there is counting digits upward until your number is smaller than 10^digits. There are other counting methods too.
One question you are going to have to deal with is what to do if the number is negative. Another question to deal with is what to do if the number is between -1 and +1, such as 0.00043
  4 个评论
komal Bhandari
komal Bhandari 2011-11-3
i know but i mean to say if there any word to describe the no value situation..
komal Bhandari
komal Bhandari 2011-11-3
I got it sir. do not worry.

请先登录,再进行评论。

更多回答(2 个)

Jake Bolanski
Jake Bolanski 2011-11-3
I'd go with what Walter mentioned. However, in general length is the ideal way to go.
  1 个评论
Walter Roberson
Walter Roberson 2011-11-3
length() of the formatted string is considerably slower than log10.

请先登录,再进行评论。


Melisa Sahin
Melisa Sahin 2020-6-23
How counts of number digits use a recursion function ?

类别

Help CenterFile Exchange 中查找有关 Loops and Conditional Statements 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by