octave-maintainers
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Patch for setdiff.m


From: John W. Eaton
Subject: Patch for setdiff.m
Date: Wed, 3 May 2006 16:03:51 -0400

On  1-May-2006, Robert S. Weigel wrote:

| 
| 2006-05-01  Bob Weigel <address@hidden>
| 
|         * scripts/set/setdiff.m: Added a "rows" option and 5 "asserts".

I applied this patch then further modified it so the code is in the
form

  if (byrows)
    new code;
  else
    existing code;
  endif

instead of 

  if (byrows == 0)
    existing code;
  endif
  if (byrows == 1)
    new code;
  endif

I also updated the doc string (based on the second patch you sent).

Thanks,

jwe


reply via email to

[Prev in Thread] Current Thread [Next in Thread]