USER BASED INPUT OF IP ADDRESS BOX IN MATLAB APPDESIGNER

5 visualizaciones (últimos 30 días)
Kartick
Kartick el 10 de En. de 2023
Editada: Kartick el 12 de En. de 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 comentario
Kartick
Kartick el 12 de En. de 2023
Editada: Kartick el 12 de En. de 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!

Iniciar sesión para comentar.

Respuestas (0)

Categorías

Más información sobre Develop Apps Using App Designer en Help Center y File Exchange.

Productos


Versión

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by