본문 바로가기

MATLAB/ㄴ 앱 디자이너

(19)
다중 창 앱에서 데이터 공유하기 https://kr.mathworks.com/help/matlab/creating_guis/multiwindow-app-gui-in-app-designer.html 다중 창 앱에서 데이터 공유하기 - MATLAB & Simulink - MathWorks 한국 이 예제의 수정된 버전이 있습니다. 사용자가 편집한 내용을 반영하여 이 예제를 여시겠습니까? kr.mathworks.com 핵심코드 1) properties (Access = Private) properties (Access = private) DialogApp CurrentSize = 35; CurrentColormap = 'Parula'; end 2) methods (Access = public) function updateplot(app, sz..
웹 사이트 데이터를 쿼리하는 timer 객체가 있는 앱 생성하기 https://kr.mathworks.com/help/matlab/creating_guis/wind-speed-gui-in-app-designer.html 웹 사이트 데이터를 쿼리하는 timer 객체가 있는 앱 생성하기 - MATLAB & Simulink - MathWorks 한국 이 예제의 수정된 버전이 있습니다. 사용자가 편집한 내용을 반영하여 이 예제를 여시겠습니까? kr.mathworks.com 핵심코드 1) properties (Access = Private) properties (Access = private) WindSpeedTimer end 2) methods (Access = Private) function WindSpeedTimerFcn(app, ~, ~) tnow = datetime(..
대화형 방식으로 정렬하고 편집할 수 있는 테이블이 있는 앱 생성하기 https://kr.mathworks.com/help/matlab/creating_guis/interactive-table-gui-in-app-designer.html 대화형 방식으로 정렬하고 편집할 수 있는 테이블이 있는 앱 생성하기 - MATLAB & Simulink - MathWorks 이 예제의 수정된 버전이 있습니다. 사용자가 편집한 내용을 반영하여 이 예제를 여시겠습니까? kr.mathworks.com 핵심코드 1) methods (Access = Private) 2-1) function updatePlot(app) t = app.UITable.DisplayData; x2 = t.Age; y2 = t.BloodPressure(:,2); plot(app.UIAxes2, x2, y2, "-o");..
프로그래밍 방식으로 극좌표 좌표축 생성하기 https://kr.mathworks.com/help/matlab/creating_guis/polar-plotting-app-gui-in-app-designer.html 프로그래밍 방식으로 극좌표 좌표축 생성하기 - MATLAB & Simulink - MathWorks 한국 이 예제의 수정된 버전이 있습니다. 사용자가 편집한 내용을 반영하여 이 예제를 여시겠습니까? kr.mathworks.com 핵심코드 1) Properties (Access = Private) 프로그램 코드 작성 시 사용할 변수 선언 properties (Access = private) Pax end 2) methods (Access = Private) 2-1) function updateplot(app) % Define theta. ..
CSS스타일시트로 스타일이 적용된 HTML 요소 표시하기 https://kr.mathworks.com/help/matlab/creating_guis/gui-with-embedded-html-content-in-app-designer.html CSS 스타일시트로 스타일이 적용된 HTML 요소 표시하기 - MATLAB & Simulink - MathWorks 한국 이 예제의 수정된 버전이 있습니다. 사용자가 편집한 내용을 반영하여 이 예제를 여시겠습니까? kr.mathworks.com 핵심코드 1) Properties (Access = Private) 프로그램 코드 작성 시 사용할 변수 선언 properties (Access = private) numclicks end 2) Callback Function 2-1) 앱이 시작될 때 데이터 로딩 및 초기화를 수행하는..
프로그래밍 방식으로 구성된 timer 객체가 있는 앱 생성하기 https://kr.mathworks.com/help/matlab/creating_guis/memory-monitor-gui-in-app-designer.html 프로그래밍 방식으로 구성된 timer 객체가 있는 앱 생성하기 - MATLAB & Simulink - MathWorks 한국 이 예제의 수정된 버전이 있습니다. 사용자가 편집한 내용을 반영하여 이 예제를 여시겠습니까? kr.mathworks.com 핵심코드 1) Properties (Access = Private) 프로그램 코드 작성 시 사용할 변수 선언 properties (Access = private) RandTimer PlotLine end 2) methods (Access = Private) 2-1) 그래프에 새로운 무작위 데이터를 추..
트리를 사용하여 데이터를 계층 구조로 표시하는 앱 https://kr.mathworks.com/help/matlab/creating_guis/display-items-in-a-tree-app-or-gui.html 트리를 사용하여 데이터를 계층 구조로 표시하는 앱 - MATLAB & Simulink - MathWorks 한국 이 예제의 수정된 버전이 있습니다. 사용자가 편집한 내용을 반영하여 이 예제를 여시겠습니까? kr.mathworks.com 핵심코드 1) Properties (Access = Private) 프로그램 코드 작성 시 사용할 변수 선언 properties (Access = private) Data end 2) methods (Access = Private) 2-1) 수정이 가능한 형태 function enableForm(app) app...
그리드 레이아웃을 사용하여 구성요소 위치와 크기 조정을 관리하는 앱 https://kr.mathworks.com/help/matlab/creating_guis/app-or-gui-with-instrument-controls.html 그리드 레이아웃을 사용하여 구성요소 위치와 크기 조정을 관리하는 앱 - MATLAB & Simulink - MathWorks 이 예제의 수정된 버전이 있습니다. 사용자가 편집한 내용을 반영하여 이 예제를 여시겠습니까? kr.mathworks.com 핵심코드 1) Properties (Access = Private) 프로그램 코드 작성 시 사용할 변수 선언 properties (Access = private) autoUpdate end 2) methods (Access = Private) 2-1) Plot을 업데이트 하는 기능의 함수 funct..