USER BASED INPUT OF IP ADDRESS BOX IN MATLAB APPDESIGNER

4 visualizzazioni (ultimi 30 giorni)
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 Commento
Kartick
Kartick il 12 Gen 2023
Modificato: Kartick il 12 Gen 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!

Accedi per commentare.

Risposte (0)

Categorie

Scopri di più su Develop Apps Using App Designer in Help Center e File Exchange

Prodotti


Release

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by