how to count a number of digits.

12 Ansichten (letzte 30 Tage)
komal Bhandari
komal Bhandari am 3 Nov. 2011
Beantwortet: Melisa Sahin am 23 Jun. 2020
How to count a number of digits in a given number withoud using numel and length(num2string()). probably use for loop or while loop.

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 3 Nov. 2011
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 Kommentare
komal Bhandari
komal Bhandari am 3 Nov. 2011
i know but i mean to say if there any word to describe the no value situation..
komal Bhandari
komal Bhandari am 3 Nov. 2011
I got it sir. do not worry.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (2)

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

Melden Sie sich an, um zu kommentieren.


Melisa Sahin
Melisa Sahin am 23 Jun. 2020
How counts of number digits use a recursion function ?

Kategorien

Mehr zu Loops and Conditional Statements finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by