How to print values on different row in App designer Table
    3 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    Med Future
 el 17 de Dic. de 2022
  
    
    
    
    
    Respondida: Voss
      
      
 el 17 de Dic. de 2022
            Hello, I want to print the data on each row in appdesigner Table 
predicted = 9511 
pred1='Maximum Value'   (char)
pred2='Minimum Value'   (char)
When i used the following commands its overwrite the data
app.UITable.Data=[predicted pred1 ];
app.UITable.Data=[predicted pred2 ];
How to apply loop on this UITable so each Data save in next row
Please help me in this
0 comentarios
Respuesta aceptada
  Voss
      
      
 el 17 de Dic. de 2022
        Try it like this:
% add a row to app.UITable.Data:
app.UITable.Data = [app.UITable.Data; {predicted pred1}];
% add another row to app.UITable.Data:
app.UITable.Data = [app.UITable.Data; {predicted pred2}];
0 comentarios
Más respuestas (0)
Ver también
Categorías
				Más información sobre Develop Apps Using App Designer 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!

