how to make 10x10x10 dobule?
조회 수: 2 (최근 30일)
이전 댓글 표시
I want to make 10x10x10 dobule.
but only i can make is 10x10 dobule.
please let me know
tanks.
댓글 수: 0
채택된 답변
Image Analyst
2022년 11월 12일
If you already have your 10x10x10 array and it is of some different numerical class (i.e. not a cell array, structure, table, etc.)
originalArray = uint8([1,2,4,7]);
whos originalArray
then you can do
dblArray = double(originalArray);
whos dblArray
See? It's now a double.
What are you starting with? Nothing or an existing array?
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Tables에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!