Filter löschen
Filter löschen

how do i plot a graph with pixel matrix?

3 Ansichten (letzte 30 Tage)
Tommy
Tommy am 9 Jul. 2014
Kommentiert: Tommy am 15 Jul. 2014
>> Result
Result =
368.8496 41.0974
>> Result1
Result1 =
18.8326 96.5229
>> Result2
Result2 =
176.9228 205.3095
>> Result3
Result3 =
263.3483 139.8583

Antworten (2)

SRI
SRI am 9 Jul. 2014
Hi For example just try this
>> A = imread('cameraman.tif');
>> plot(A)
  1 Kommentar
Tommy
Tommy am 11 Jul. 2014
if doing this for all 5 results, there will be 5 lines. im trying to obtain 5 points and make them link together. however this results are in a matrix form.

Melden Sie sich an, um zu kommentieren.


David Sanchez
David Sanchez am 11 Jul. 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),'*')
  1 Kommentar
Tommy
Tommy am 15 Jul. 2014
erm ya something like that but in a graph point of view. connecting all the points together.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu 2-D and 3-D Plots finden Sie in Help Center und File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by