sparse matrix with data type as 'single'
10 ビュー (過去 30 日間)
古いコメントを表示
Dear all:
I have a very large sparse matrix that I hope to reduce the size further more. I noticed that in full matrix, one could cast a matrix to a different data type, e.g., from double to single.
A = eye(100);
S = sparse(A);
B = single(eye(100));
S = sparse(B); % error: Undefined function 'sparse' for input arguments of type 'single'.
whos
I am wondering if there is any way to turn non-zero part of a sparse matrix into a data type of single so that I could save half of the space.
Thank you, and I look forward to hearing from you!
Best,
Long
0 件のコメント
採用された回答
Mike Croucher
2025 年 8 月 13 日
This is now supported, starting from MATLAB R2025a. A detailed write up can be found at New in MATLAB: Single precision sparse matrices » The MATLAB Blog - MATLAB & Simulink
0 件のコメント
その他の回答 (1 件)
Walter Roberson
2020 年 6 月 18 日
No, that is not supported. sparse() is only supported for double and logical.
5 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!