MATLAB Matlab graphing/plotting problem

  • Thread starter Thread starter sara_87
  • Start date Start date
  • Tags Tags
    Matlab
AI Thread Summary
To graph the points (8,0), (4,-4), (-4,4), and (-8,0) in MATLAB, the user needs to create two sets of coordinates. The first set consists of the points (8,0) and (4,-4), while the second set includes (-4,4) and (-8,0). The user can define these coordinates in MATLAB using arrays: X1=[8 4]; Y1=[0 -4]; for the first pair and X2=[-4 -8]; Y2=[4 0]; for the second pair. To plot both pairs on the same graph, the command should be structured as plot(X1,Y1,...,X2,Y2);. This will connect the first two points and the last two points on the same graph effectively.
sara_87
Messages
748
Reaction score
0

Homework Statement



i have 4 points,
(8,0)
(4,-4)
(-4,4)
(-8,0)
i want to draw a graph of this on MATLAB so that the first to points are joined, the last two points are joined, but i want it on the same graph.
how do i do this? what's the command?
thank you
 
Physics news on Phys.org
Alright, so you're learning to use Matlab... :)
Your first two coordinates are: (8,0) and (4,-4)
These coordinates are in the form (X,Y).
so make an array with your X data and an array with your Y data like this:
X1=[8 4]; Y1=[0 -4];
Then get Matlab to plot it by using the plot command:
plot(X1,Y1)

Do the same for the other pair of coordinates...

Altogether, it will look like this: (just cut and paste.. and it should work)

%start
X1=[8 4]; Y1=[0 -4];
X2=[-4 -8]; Y2=[4 0];

plot(X1,Y1,...
X2,Y2);
%end
 

Similar threads

Replies
4
Views
4K
Replies
32
Views
4K
Replies
1
Views
2K
Replies
2
Views
2K
Replies
5
Views
2K
Replies
5
Views
3K
Replies
1
Views
4K
Replies
2
Views
3K
Back
Top