필터 지우기
필터 지우기

Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

how to convert exponentional number into a decimal number

조회 수: 1 (최근 30일)
faa nad
faa nad 2012년 10월 9일
마감: MATLAB Answer Bot 2021년 8월 20일
dear sir,
Euc_dist =
[ 1.0e+013 *
0.0106 1.9718]
Euc_dist is an example matrix which has the above value. but i dont want 1.0e+013,i m interested only in the remaining value i.e [0.0106 1.9718]how to get it

답변 (2개)

Azzi Abdelmalek
Azzi Abdelmalek 2012년 10월 9일
Euc_dist = 1.0e+013 *[ 0.0106 1.9718]
x=Euc_dist/1.0e+013

Andrei Bobrov
Andrei Bobrov 2012년 10월 9일
a = 1.0e+013 * [ 0.0106 1.9718]
out = a.*10.^-max(floor(log10(a)))

이 질문은 마감되었습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by