How to save an image run time with a title?
    2 visualizzazioni (ultimi 30 giorni)
  
       Mostra commenti meno recenti
    
    Jhilam Mukherjee
 il 4 Ago 2016
  
    
    
    
    
    Modificato: Walter Roberson
      
      
 il 4 Ago 2016
            My program gives some output images using some loops and is capable to store output images in run time. However, I want to save the image with a title containing the value of loop variable without displaying it. How it will be possible.
0 Commenti
Risposta accettata
  Walter Roberson
      
      
 il 4 Ago 2016
        
      Modificato: Walter Roberson
      
      
 il 4 Ago 2016
  
      title( sprintf('The value of the variable as %g', LoopVariableNameGoesHere) )
Or perhaps you mean something like
filename = sprintf('QZT32_P%03d.png', LoopVariableNameGoesHere);
imwrite(YourImageData, filename);
0 Commenti
Più risposte (0)
Vedere anche
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

