Shifting of 3D curve
    9 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    AYUSH SINGHAL
 el 11 de Mzo. de 2020
  
    
    
    
    
    Respondida: BobH
      
 el 11 de Mzo. de 2020
            i plotted a 2D (75x75) matrix using surf command, now i want to change the range of axis from 0-15 with an interval of 0.2.
hoow can i do that??

0 comentarios
Respuesta aceptada
  BobH
      
 el 11 de Mzo. de 2020
        You seem to be dividing the axis scale by 5.   The same steps also apply to 'XTickLabel'
ylabel = get(gca, 'YTickLabel')  % returns 5x2 char array
ylabel =
0 
20
40
60
80
newylabel = num2str( str2num(ylabel) ./ 5 )
newylabel =
 0
 4
 8
12
16
set(gca, 'YTickLabel', newylabel);
0 comentarios
Más respuestas (0)
Ver también
Categorías
				Más información sobre Surface and Mesh Plots 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!

