Please explain the following code for me !!!

1 次查看(过去 30 天)
function createfigure(cdata1, X1, Y1, X2, Y2)
%CREATEFIGURE(cdata1, X1, Y1, X2, Y2)
% CDATA1: image cdata
% X1: vector of x data
% Y1: vector of y data
% X2: vector of x data
% Y2: vector of y data
% Auto-generated by MATLAB on 06-Nov-2021 14:39:07
% Create figure
figure1 = figure('Tag','RobotSimulator','Name','Robot Simulator');
% Create axes
axes1 = axes('Parent',figure1);
hold(axes1,'on');
% Create image
image([0.00373412994772218 9.99626587005228],...
[4.24570575056012 0.00373412994772218],cdata1,'Parent',axes1,...
'CDataMapping','scaled');
% Create plot
plot(X1,Y1,'ZDataSource','','Color',[1 0 0]);
% Create plot
plot(X2,Y2,'ZDataSource','','MarkerFaceColor',[1 1 1],'Marker','o',...
'LineStyle','none',...
'Color',[0 0 1]);
% Create ylabel
ylabel('Y [meters]');
% Create xlabel
xlabel('X [meters]');
% Create title
title('Circle = robot position, Line = robot orientation');
% Uncomment the following line to preserve the X-limits of the axes
% xlim(axes1,[0 10]);
% Uncomment the following line to preserve the Y-limits of the axes
% ylim(axes1,[0 4.24943988050784]);
box(axes1,'on');
% Set the remaining axes properties
set(axes1,'DataAspectRatio',[1 1 1],'Layer','top','TickDir','out');
This is the code in FIGURE, used to simulate the robot moving on the map, hope everyone can explain this code to me
And how to put this code in the GUI ?

采纳的回答

Sudharsana Iyengar
Sudharsana Iyengar 2021-11-6
You have generated code using generate code in the file menu of your figure.
So next time when you want to make a figure of this robot you will have to supply the cdata, x1,y1,x2and y2. Using the data as arguments, your createfigure function will create a plot.
To put this in code in GUI, you will have to make 5 inputs which will take the cdata, x1,y1,x2,y2. Then when you push the push button, this function should be called and a figure should be generated on the axes.
  3 个评论
Sudharsana Iyengar
Sudharsana Iyengar 2021-11-7
This shows the method. Instead of xls you can use any other data file. This discusses on how gui is made. Instead of 2 you may have to include 5 inputs. Check it out.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Labels and Annotations 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by