필터 지우기
필터 지우기

export to excel

조회 수: 4 (최근 30일)
James
James 2011년 8월 4일
댓글: Darina 2014년 2월 17일
Hi
I have several variables which are 2x20 structures.
I want to capture and store all the values in the 2nd row and put this into excel.
How can I do this?

답변 (3개)

Fangjun Jiang
Fangjun Jiang 2011년 8월 4일
You may need to use struct2cell() to convert your structure to cell array and then use xlswrite(). Please give an example of your structure. There might be special things to deal with.

James
James 2011년 8월 4일
Okay. I hope this helps. I dont know how else to describe it. For example:
For my 2x20 structured variable called 'variable1'. When I open this in the variable editor, it shows 1x1 structures in every cell.
When double clicking on a cell in the first row this shows: field: cdata value: double
When double clicking on a cell in the second row this shows: field: cdata value: 50 (or some integer number)

Fangjun Jiang
Fangjun Jiang 2011년 8월 4일
Okay, sounds like not a difficult data structure. Take a look at the example I made up, if similar, you can go ahead. This way, the data written to the Excel file keeps the shape of your structure,i.e. 2 rows 20 columns in your case.
NewVariable1=struct('cdata',repmat({50},2,2))
xlswrite('test.xls',reshape([NewVariable1.cdata],size(NewVariable1)))
  댓글 수: 3
Fangjun Jiang
Fangjun Jiang 2011년 8월 4일
I am saying, you can open NewVariable1 in the variable editor, if it looks similar to what you saw on variable1 (except the size), then you can use my code to write to Excel file. Of course, you need to replace "NewVariable1" with "variable1" in the code. I was careful not to over-write the value of your "variable1".
Darina
Darina 2014년 2월 17일
I have similar problem but it seems that my nested strucutre is also quite difficult to import to excel. I would like to import all the data from the last field 'flowArray' (which is of type double) into excel sheet?
My nested stucture looks like this:
currentFlowArray=allFileMin(i).demand_pattern1.Wm.total.flowArray;

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by