How to save data from "dlarray" structure?????

조회 수: 11 (최근 30일)
minhyuk jeung
minhyuk jeung 2023년 9월 1일
댓글: minhyuk jeung 2023년 9월 1일
Hello I am trying to save the data from "dlarray" format.
The structure:
When trying to save this data using "xlswite" or "writematrix", it doesn't work.
Please help.
Thank you.
  댓글 수: 2
Pooja Kumari
Pooja Kumari 2023년 9월 1일
Can you share the data?
minhyuk jeung
minhyuk jeung 2023년 9월 1일
I attached my "dlarrayfile".
Thank you for your help

댓글을 달려면 로그인하십시오.

답변 (1개)

Yash
Yash 2023년 9월 1일
편집: Yash 2023년 9월 1일
It seems like you're trying to save data in the "dlarray" format, which is typically used in deep learning frameworks like MATLAB's Deep Learning Toolbox. Saving data from a dlarray to a file format like XLSX (Excel) using xlswrite or writematrix might not work directly because these functions are primarily designed for simple numerical matrices or tables, not specialized data structures like dlarray.
To save data from a dlarray, you'll need to convert it into a suitable format before using xlswrite or any other file-writing function. Here are some steps you can follow:
  1. Extract Data: First, extract the numerical data from the dlarray object. You can do this using the extractdata method in MATLAB:
data = extractdata(your_dlarray);
Replace your_dlarray with the actual dlarray you want to save.
2. Convert to a Suitable Format: Convert the extracted data into a format that can be easily saved using xlswrite or writematrix. Depending on your data's structure, you might need to convert it to a numerical matrix, cell array, or table.
  • For a numerical matrix:
numerical_data = double(data);
  • For a cell array:
cell_data = num2cell(double(data));
  • For a table:
table_data = array2table(double(data));
3. Save Data: Now that you have your data in a suitable format, you can use xlswrite or writematrix to save it to an XLSX file or any other desired format:
  • For xlswrite
xlswrite('output.xlsx', numerical_data);
  • For writematrix
writematrix(numerical_data, 'output.xlsx');
Replace 'output.xlsx' with your desired file path.
Make sure to choose the format that best suits your data and intended use case (matrix, cell array, or table) before saving it. Additionally, ensure that you have the required toolbox or functions installed and included in your MATLAB environment for working with Excel files (xlswrite, writematrix, etc.)
For more information on dlarray.extractData you can refer here.
I hope this helps.
  댓글 수: 1
minhyuk jeung
minhyuk jeung 2023년 9월 1일
Thank you for your kindly answer.
I tried your solutions, it doesn't works well.
The result when I transform the data into "table":

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Image Data Workflows에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by