필터 지우기
필터 지우기

I want to export my data from app designer ?

조회 수: 21 (최근 30일)
asd asd
asd asd 2023년 3월 29일
댓글: Andres Montes 2023년 4월 12일
Hello guys
I want to export my data from app designer ? I know about writetable but i dont know how to use it !!!
Number of outputs alot !!! I want to export output number to exel file
THanks .

답변 (1개)

Andres Montes
Andres Montes 2023년 3월 29일
Hi, please tell me more about waht you want to do. What I do is use a function called xlswrite as follows:
xlswrite("File.xlsx",var,1,'A1:C2')
Here "File.xlsx" is the name of the file, var is what you want to write on Excel, 1 is the sheet, and 'A1:C2' is the range of cells where the information is going to be written.
It creates a file with that name or edits the file with that specific name (it has to be in the same folder).
I hope this is what you need. I use transferring data between Excel and Matlab a lot.
Also, if you still find trouble with it, continue this thread so I can help you more and other people with the same issue can look up to this. I spent a lot of time researching on how to use these formulas. Also, I don't know if they work in Matlab online, but isnce you are using App Designer, there is no problem.
  댓글 수: 2
asd asd
asd asd 2023년 3월 30일
Thanks you for your answering .
I want to export my output to exel or text
Rxtarget2 = app.Rxtarget2EditField.Value ;
Rytarget2 = app.Rytarget2EditField.Value ;
btarget2 = app.btarget2EditField.Value ;
Rbarxtarget2 = 2*Rxtarget2/btarget2 ;
Rbarytarget2 = 2*Rytarget2/btarget2 ;
app.Rbarxtarget2EditField.Value = Rbarxtarget2 ;
app.Rbarytarget2EditField.Value = Rbarytarget2 ;
I want to export Rbarxtarget2 , Rbarytarget2 to exel or text
Thank you
Andres Montes
Andres Montes 2023년 4월 12일
Hi, I think this would work
var=[Rbarxtarget2 , Rbarytarget2];
xlswrite("File.xlsx",var,1,'A1:B1')
That will create or edit an Excel file and change the cells A1 and B1 with your values.
Hope it helps!

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

카테고리

Help CenterFile Exchange에서 Develop Apps Using App Designer에 대해 자세히 알아보기

제품


릴리스

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by