take time from user !
    2 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    Khaled Al-Faleh
 el 28 de Abr. de 2017
  
    
    
    
    
    Respondida: Image Analyst
      
      
 el 29 de Abr. de 2017
            Hi I have a gate and I want to take the time in and out from user but the problem in my program is saved as string see this
          %========= TIME IN==========%
          prompt = {'Enter Time In:'};
          dlg_title = 'TIME IN';
          num_lines = 1;
          defaultans = {'0'};
          TimeIn = inputdlg(prompt,dlg_title,num_lines,defaultans);
          %========= TIME OUT=========%
          prompt = {'Enter TIME OUT:'};
          dlg_title = 'Time out';
          num_lines = 1;
          defaultans = {'0'};
          TimeOut = inputdlg(prompt,dlg_title,num_lines,defaultans);
the problem here its store it as string and if the user enter let say 10:15 and out 10:50 how H can make sure that the interval between them is unavailable..
0 comentarios
Respuesta aceptada
  Image Analyst
      
      
 el 29 de Abr. de 2017
        Parse out the numbers, like with strtok(), then pass the numbers into etime(). Or use newer functions like datetime().
0 comentarios
Más respuestas (0)
Ver también
Categorías
				Más información sobre Dates and Time en Help Center y File Exchange.
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

