필터 지우기
필터 지우기

Please explain the following code for me !!!

조회 수: 1 (최근 30일)
xuan hoa
xuan hoa 2021년 11월 6일
댓글: xuan hoa 2021년 11월 7일
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.
xuan hoa
xuan hoa 2021년 11월 7일
Oh !! Thank you.

댓글을 달려면 로그인하십시오.

추가 답변 (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