can't add axis labels
    12 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
hey, could someone quickly help me to add labels to my plot? i've tried but something has gone wrong (something simple i'm sure)
this is the code i've used just at the end to do my plots
plot(50:1000,z_1rec,'color','r'), hold on plot(50:1000,z_1nogaprec,'color','b'), xlabel Frequency (Hz), ylabel Surface Impedance
0 comentarios
Respuesta aceptada
  Mohsen  Davarynejad
      
 el 11 de Dic. de 2011
        xlabel('Frequency (Hz)');
ylabel('Surface Impedance');
0 comentarios
Más respuestas (2)
  Robert Cumming
      
 el 11 de Dic. de 2011
        plot ( magic(100) )
xlabel ( 'my xlabel' )
ylabel ( 'my ylabel' )
0 comentarios
Ver también
Categorías
				Más información sobre Axis Labels 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!


