comparison scripts/set/union.m @ 23084:ef4d915df748

maint: Merge stable to default.
author John W. Eaton <jwe@octave.org>
date Mon, 23 Jan 2017 14:27:48 -0500
parents 3a2b891d0b33 e9a0469dedd9
children 092078913d54
comparison
equal deleted inserted replaced
23081:7485462a6924 23084:ef4d915df748
118 %!error <invalid option: columns> union (1, 2, "columns") 118 %!error <invalid option: columns> union (1, 2, "columns")
119 %!error <cells not supported with "rows"> union ({"a"}, {"b"}, "rows") 119 %!error <cells not supported with "rows"> union ({"a"}, {"b"}, "rows")
120 %!error <A and B must be arrays or cell arrays> union (@sin, 1, "rows") 120 %!error <A and B must be arrays or cell arrays> union (@sin, 1, "rows")
121 %!error <A and B must be 2-dimensional matrices> union (rand(2,2,2), 1, "rows") 121 %!error <A and B must be 2-dimensional matrices> union (rand(2,2,2), 1, "rows")
122 %!error <number of columns in A and B must match> union ([1 2], 1, "rows") 122 %!error <number of columns in A and B must match> union ([1 2], 1, "rows")
123