MATLAB: Three-dimensional matric and Excel

excelthree dimensional matrix

How can I send a Three-dimensional matrix to the Excel?

Best Answer

How about writing each matrix in a sheet.
A = rand(10,10,5) ;
for i = 1:5
xlswrite('test.xlsx',A(:,:,i),i)
end