3.0.4 RC6
Rob Mahurin
rob at utk.edu
Wed Mar 25 15:29:00 CDT 2009
On Mar 25, 2009, at 10:26 AM, Jaroslav Hajek wrote:
> I've tried to fix the graphics bug in rc5 by extracting some patches
> from the thread:
> http://www.nabble.com/octave-3.0.4-rc5-td22177145.html#a22201560
>
> so the rc6 tarballs are available in the usual location:
> http://artax.karlin.mff.cuni.cz/~hajej2am/ulozna/octave/
>
> I was kinda lost in the conversation, so I'm not sure I did a good
> job. If not, then please suggest fixes directly applicable against
> 3.0.x.
make check on Debian gives
> Summary:
>
> PASS 4136
> FAIL 1
>
> There were 2 expected failures (see fntests.log for details).
which is pretty good, I guess.
There is a failure in "controldemo" (option 3, then option 2, then
option 1) which is fixed by the attached patch.
The bug exposed by "subplot(111); clf; plot([1 2],[3 4])" is gone.
Cheers,
Rob
--
Rob Mahurin
Department of Physics and Astronomy
University of Tennessee 865 207 2594
Knoxville, TN 37996 rob at utk.edu
diff --git a/scripts/ChangeLog b/scripts/ChangeLog
index cfd4172..2824d3c 100644
--- a/scripts/ChangeLog
+++ b/scripts/ChangeLog
@@ -2,6 +2,10 @@
Version 3.0.4 released.
+2009-03-25 Rob Mahurin <rob at utk.edu>
+
+ * set/create_set.m: return a row vector. From M. Caliari.
+
2009-03-25 Jaroslav Hajek <highegg at gmail.com>
* plot/clf.m: Fix due to M. Caliari.
diff --git a/scripts/set/create_set.m b/scripts/set/create_set.m
index a9ea7d9..958ad09 100644
--- a/scripts/set/create_set.m
+++ b/scripts/set/create_set.m
@@ -52,7 +52,8 @@ function y = create_set (x, rows_opt)
endif
if (nargin == 1)
- y = unique (x).';
+ y = unique (x);
+ y = y(:).';
elseif (strcmpi (rows_opt, "rows"))
y = unique (x, "rows");
else
More information about the Octave-maintainers
mailing list