Matlab guide application on website

2 次查看(过去 30 天)
MANAV BAJAJ
MANAV BAJAJ 2019-3-24
编辑: Rik 2019-3-24
Hi, I was developing a brain tumor detection application using guide on MATLAB, can I use MATLAB on website so that everyone can access it? Is there any way to use MATLAB in backend or to parse matlab code?
  1 个评论
Rik
Rik 2019-3-24
编辑:Rik 2019-3-24
If I recall correctly there is a (paid) service by Mathworks that will allow you to have Matlab code running on your website.
Especially for bigger projects I would strongly recommend not using GUIDE. It results in a big cludge of code that is very hard to maintain, almost impossible to edit it the future, and is hard to debug properly.
My small guide to avoid GUIDE:
  • Make a figure (with f=figure;) and look into the doc for figure which properties you want to turn off (you probably want to set Menu and Toolbar to 'none')
  • Create buttons and axes and everything you need with functions like uicontrol and axes. Save the handles to each element to fields of a struct (like handles.mybutton=uicontrol(___);)
  • When you've finished loading all data (and saving it to fields of your handles struct), and creating all the buttons, save your handles struct to the guidata of your figure like this guidata(handles.f,handles);. (You can also use getappdata and setappdata)
  • You can set the Callback property of many objects. If you do, use a function name with an @ in front, or a char array that can be evaluated to valid code. (like @MyFunction or 'disp(''you pushed the button'')')
  • Callback functions will be called with two arguments: the first is a handle to the callback object, the second is eventdata that may contain special information. To get access to your data, just use handles=guidata(gcbo);. You can replace the gcbo function with the name of the first input to your callback function if you prefer.
  • More information about callbacks can be found in multiple places in the doc, for example here.

请先登录,再进行评论。

回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Migrate GUIDE Apps 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by