Is it possible to change scalar to numeric in workspace?

조회 수: 2 (최근 30일)
asaii
asaii 2023년 12월 21일
댓글: asaii 2023년 12월 21일
This picture is the scalar that I would like to have converted to a Matrix of arrays (numeric if possible).
Is it possible to change scalar to numeric in workspace?

채택된 답변

Chunru
Chunru 2023년 12월 21일
a = gpuArray(rand(3, 4, 2));
a(:,:,1)
% use gather to convert gpu array to regular array
b = gather(a(:,:,1))

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Matrices and Arrays에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by