Making a small app in matlab
    3 次查看(过去 30 天)
  
       显示 更早的评论
    
I would like to make small app with matlab where I put few informations and through my matlab commands calculate it.

App should look like that where I put 3 numeric informations, and 3 file names, and than the app calculate it and export needed excel file.
I attached my matlab code with some guide.
采纳的回答
  OCDER
      
 2018-7-10
        There's a good tutorial that explains where to add the callback functions. Run the following in your matlab command window.
 >> appdesigner.internal.application.openTutorial('BasicCoding')
Essentially, you modify private methods inside your code. This is from the tutorial when you finish it.
methods (Access = private)
     % Value changed function: AmplitutdeSlider
    function AmplitutdeSliderValueChanged(app, event) %THIS CALLBACK fcn will run a code after a GUI event.
        value = app.AmplitutdeSlider.Value;
        plot(app.UIAxes, value*peaks)
        app.UIAxes.YLim = [-1000 1000];  
    end
end
0 个评论
更多回答(1 个)
  anfel
 2025-2-2
        
      编辑:Walter Roberson
      
      
 2025-2-2
  
      methods (Access = private)
% Value changed function: AmplitutdeSlider
function AmplitutdeSliderValueChanged(app, event) %THIS CALLBACK fcn will run a code after a GUI event.
value = app.AmplitutdeSlider.Value;
plot(app.UIAxes, value*peaks)
app.UIAxes.YLim = [-1000 1000];  
end
end
0 个评论
另请参阅
类别
				在 Help Center 和 File Exchange 中查找有关 Develop Apps Using App Designer 的更多信息
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!



