フィルターのクリア

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 Center および File ExchangeLogical についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by