フィルターのクリア

Output of sprintf - string?

3 ビュー (過去 30 日間)
Gennaro Arguzzi
Gennaro Arguzzi 2017 年 5 月 11 日
編集済み: Stephen23 2018 年 1 月 16 日
Hi everyone,
on Matlab's documentation I read that sprintf is a function which takes as input data and returns a string. If I write:
x=sprintf('%d',2222)
the output has 1x4 dimension, thus is a character array and not a string (i use Matlab 2015). Why?
Thank you.

採用された回答

Stephen23
Stephen23 2017 年 5 月 11 日
編集済み: Stephen23 2018 年 1 月 16 日
Because MATLAB only introduced the string class in R2016b, but previously any character array with size 1xN was called a "string". So for historic reasons there are many references to "strings" that are actually references to 1xN char arrays.
For example this includes the functions sprintf, cellstr, and iscellstr.
For the function sprintf:
  • Versions R2016a and before: The output is a 1xN char array.
  • Versions R2016b and later: The output class is the same as that of the first input.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeData Type Conversion についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by