Value in x-axis and y-axis not display same as data
Show older comments
x-axis should be display value of latitude and y-axis should be display the value of longitude. but when im run GUI with this coding;
table=get(handles.uitable5,'Data'); X=table(:,1); Y=table(:,2); Z=table(:,3);
pointsize = 20; scatter(X, Y, pointsize, Z); colormap([1 0 0; 0 1 0]); %red, green axes(handles.axes1);
the result is like image below which x-axis was display by the value 1,1.002,1.004,1.006,1.008,1.01 and y-axis was display by the value 1,1.0005,1.001,1.0015,1.002,1.0025,1.003.

Accepted Answer
More Answers (0)
Categories
Find more on Color and Styling in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
