CHANGE SCRIPT CODE INTO GUI MATLAB

조회 수: 1 (최근 30일)
rizqi basith
rizqi basith 2024년 1월 26일
댓글: Walter Roberson 2024년 1월 26일
I OPERATE SCANNER WITH MATLAB AND CMDTWAIN USING THIS CODE IN SCRIPT MATLAB
status = system('CmdTwain -c "A4 600 COLOR" 100 D:\HASIL_SCAN\scankertas.jpg &');
BUT I NEED CHANGE AND USE THAT CODE INTO GUI. CAN ANYONE GIVE ME CLUE OR HELP TO MAKE GUI WITH IT?
THANK YOU
  댓글 수: 2
Rik
Rik 2024년 1월 26일
A GUI in Matlab is nothing special, it simply provides an interface between the user and the functions you write separately. For general advice and examples for how to create a GUI (and avoid using GUIDE), have look at this thread.
If you have a specific question, have a read here and here. It will greatly improve your chances of getting an answer.
Walter Roberson
Walter Roberson 2024년 1월 26일
You will probably want to switch from using system() to using System.Diagnostics.Process -- using the .NET interface to creating processes.

댓글을 달려면 로그인하십시오.

답변 (1개)

Cris LaPierre
Cris LaPierre 2024년 1월 26일
I suggest getting started by completeing the App Building Onramp. This will give you the bascs of building an app. Since you have a working script, you just need to decie how you want to spreak the execution around the different callbacks of your app.
I'd say complete the onramp, then make an attempt creating the app. The community can be much more helpful with specific questions of how to implement somethign in App Designer.

카테고리

Help CenterFile Exchange에서 Introduction to Installation and Licensing에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by