USER BASED INPUT OF IP ADDRESS BOX IN MATLAB APPDESIGNER

5 Ansichten (letzte 30 Tage)
Kartick
Kartick am 10 Jan. 2023
Bearbeitet: Kartick am 12 Jan. 2023
I am conceptualizing an App using appdesigner having a user based input of IP address. The IP address when filled and push button when pressed will ping the address fed. I am unable to generate the IP address field. I am using following code for pinging:
command='ping 192.168.100.1'
[status,cmdout]=system(command)
cmdout will generate the result as char which will be arranged(as per need) and displayed as result in text box. I wish to get text box for entry of IP address.
I have tried following examples provided under mathworks.com
and
neither of above works for my case
  1 Kommentar
Kartick
Kartick am 12 Jan. 2023
Bearbeitet: Kartick am 12 Jan. 2023
I have done some trials and errors and finally found some systems that is working:
prompt='Enter the IP Address: '
str=input(prompt,'s')
[status,cmdout]=system(['ping ' str])
When the above code in RUN, its ask user to to input IP address and the cmdout is the result which I am getting. I also have prepared custom UI component for IP entry field.
However I am unable to make it happen i.e App using appdesigner having a user based input of IP address which when fed with IP address and push button when pressed will ping the address.
Thanks in advance!

Melden Sie sich an, um zu kommentieren.

Antworten (0)

Kategorien

Mehr zu Develop Apps Using App Designer finden Sie in Help Center und File Exchange

Produkte


Version

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by