How to show axes when I build a GUI Scatter plot
    2 vues (au cours des 30 derniers jours)
  
       Afficher commentaires plus anciens
    
    Jiali
      
 le 14 Juin 2015
  
    
    
    
    
    Réponse apportée : Walter Roberson
      
      
 le 14 Juin 2015
            how to show axes and minortick when I build a GUI Scatter plot? By using the following code, no axes are shown in GUI. Please help me. I appreciate your efforts.
function Axes1_CreateFcn(hObject, eventdata, handles)
         axis equal;
function Load_Callback(hObject, eventdata, handles)
    axes(handles.Axes1);
    hold on;
    if ~isempty(A)
     scatter(A(:,1),A(:,2),25,'b','filled');
     scatter(B(:,1),B(:,2),25,'g','filled');
    end
    % here, A,B are data matrix that I want to plot
0 commentaires
Réponse acceptée
  Walter Roberson
      
      
 le 14 Juin 2015
        function Load_Callback(hObject, eventdata, handles)
  axes(handles.Axes1);
  if ~isempty(A)
   scatter(A(:,1),A(:,2),25,'b','filled');
   hold on;
   scatter(B(:,1),B(:,2),25,'g','filled');
  end
0 commentaires
Plus de réponses (0)
Voir également
Catégories
				En savoir plus sur Scatter Plots dans Help Center et File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

