bars_list([l1,l2,...,ln]) == bars(l1,l2,...,ln)?



On 08/17/13 14:08, Larry Evans wrote:
> I can only create the args to bars as a list (as shown on rhs of Subject
> ==).  The bars I'm talking about is the one in section 48.2.4
> of:
> 
Reading the manual on apply shows:

  apply(bars,[l1,l2,...,ln])

does same as:

  bars(l1,l2,...,ln)

Problem solved.

-Larry