이 제출물을 팔로우합니다
- 팔로우하는 게시물 피드에서 업데이트를 확인할 수 있습니다
- 정보 수신 기본 설정에 따라 이메일을 받을 수 있습니다
num2CellStr - converts numeric or logical array to a cell array of strings
This was inspired by a recent FEX submission of the same name. However,
it should run about 100 times faster. It also runs ~12 times faster than
the one liner:
cellA = reshape(cellstr(num2str(A(:))),size(A));
Syntax:
strCell = num2CellStr(x, format)
Input parameters:
x - mandatory matrix of numeric values
format - optional format specifier. If not specified one is
picked based on the data up to 5 decimal places
Output parameters:
strCell - cell array of strings
Examples:
num2CellStr(rand(2),'%.2f')
ans =
'0.06' '0.61'
'0.13' '0.39'
See also:
num2cell, mat2cell, textscan, strread
인용 양식
Andrew Watson (2026). num2cellstr (https://kr.mathworks.com/matlabcentral/fileexchange/20639-num2cellstr), MATLAB Central File Exchange. 검색 날짜: .
| 버전 | 퍼블리시됨 | 릴리스 정보 | Action |
|---|---|---|---|
| 1.0.0.0 |
