how do i plot a graph with pixel matrix?
2 次查看(过去 30 天)
显示 更早的评论
>> 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 个评论
回答(2 个)
David Sanchez
2014-7-11
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),'*')
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Data Exploration 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!