필터 지우기
필터 지우기

Get value only in matlab

조회 수: 1 (최근 30일)
Kian
Kian 2015년 8월 10일
답변: Star Strider 2015년 8월 10일
Anyway to get the value of uint64 integer only. In other words, if 12345 is a uint64 integer, how to convert it to double while the value of the double remains 12345. Something similar to Excel's paste value only.

답변 (1개)

Star Strider
Star Strider 2015년 8월 10일
Unless I missed something in your Question, this is straightforward:
x = uint64(12345)
xd = double(x)
x =
12345
xd =
12345

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by