how to get the structure variable in excel using matlab addins?
1 次查看(过去 30 天)
显示 更早的评论
I am doing data studies of system. I want to take matlab results to excel using matlab excel addins. I am facing one problem that is, I want to 'getmatrix' from matlab to excel which is in the structure. how can i get it?
e.g. xy is structure and under it several variables are there. I want to get those variables to excel using 'getmatrix'.
I tried xy.abc -> doesn't work xy -> doesn't work
Regards Jaivik
0 个评论
回答(1 个)
Madhura Suresh
2013-8-26
You can use the MATLAB EVAL function in conjunction with the MATLABSUB Excel Link function to obtain the data. For this you can enter the following code in an Excel worksheet cell:
matlabsub("eval", "<DESTINATION_CELL>", "xy.abc");
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Data Export to MATLAB 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!