Recent content by soiTios

  1. S

    MATLAB Matlab graphing/plotting problem

    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...
Back
Top