From: Susan Montag on
Hi, I've a little question.
After typing this in the Command Window:
>> list= line(1, 3, 4, 5)
How can I let the outcome exactly become like:

list =

1 3

4 5

in stead of

a =
1
b =
3
c =
4
d =
5

??


Thanks in advance.
From: ImageAnalyst on
I see this:
list=line(1,3,4,5)
??? Error using ==> line
Too many input arguments.


And in the help I see this:
line

Create line object
Syntax

line
line(X,Y)
line(X,Y,Z)
line(X,Y,Z,'PropertyName',propertyvalue,...)

line('XData',x,'YData',y,'ZData',z,...)
h = line(...)

Have you redefined the line function? And where the heck is it
getting a, b, c, and d from???