How to solve my problem when running GUI file in another computer(different OS)?

1 view (last 30 days)
I created a GUI project in my computer(MATLAB 2014b, windows 7 64bit), and I used save(handles) to save my data in GUI so that I can go back to the state by using load. Then I need to run the .m and .fig file in another computer(MATLAB 2014a, windows XP 32bit),but I found when I save and load handles, it happened only a struct data being imported rather than the interface like before. Could anyone help me to solve this problem please?

Answers (1)

Walter Roberson
Walter Roberson on 3 Dec 2015
Graphics handles saved in R2014b or later are not backwards compatible with R2014a or earlier.
R2014b introduced a new graphics system that greatly changed how graphics are represented. Graphics created with R2014b or later cannot be used in R2014a or earlier.
  3 Comments
Walter Roberson
Walter Roberson on 3 Dec 2015
Yes, the version saved in R2014b can be used on R2014b or later, but not on earlier systems.

Sign in to comment.

Categories

Find more on Migrate GUIDE Apps in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!