HOW TO get answer in 6 decimal places .

52 Ansichten (letzte 30 Tage)
sadiqa ilyas
sadiqa ilyas am 21 Sep. 2019
Kommentiert: Boddu Meghanadh am 9 Mär. 2020
Hi. I have for example U=0,1,2,3,4,5,6,7
i want to divide each no by 10000. I need the answer in decimal and then find the maximum value of X.Round,ceil,fix does not give me the desired result.
U=unique(point2(:,2));%some values of U
X=round(U/10000);
a=max(X)
  4 Kommentare
David Hill
David Hill am 21 Sep. 2019
a=sprintf('%0.6f',max(X));
But a will be a charactor array
sadiqa ilyas
sadiqa ilyas am 21 Sep. 2019
thanks.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

David Hill
David Hill am 21 Sep. 2019
format long
  1 Kommentar
Boddu Meghanadh
Boddu Meghanadh am 9 Mär. 2020
can u write that briefly following syntax....with a simple example?

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Get Started with MATLAB finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by