how do i plot a graph with pixel matrix?
    10 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
>> Result
Result =
368.8496   41.0974
>> Result1
Result1 =
   18.8326   96.5229
>> Result2
Result2 =
176.9228  205.3095
>> Result3
Result3 =
263.3483  139.8583
0 comentarios
Respuestas (2)
  David Sanchez
      
 el 11 de Jul. de 2014
        It is not very clear what you want, but I think it could be this:
Result = [368.8496   41.0974];
Result1 = [18.8326   96.5229];
Result2 = [176.9228  205.3095];
Result3 = [263.3483  139.8583];
Results_array = [Result; Result1; Result2; Result3];
plot(Results_array(:,1),Results_array(:,2),Results_array(:,1),Results_array(:,2),'*')
Ver también
Categorías
				Más información sobre 2-D and 3-D 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!


