Displaying 7 results from an estimated 7 matches for "kasal".
Did you mean:
kasan
2018 Mar 12
3
Bug report: override stopifnot() ?
...(a == a) print(1) : argument is not interpretable as logical
Neither does work, but the first error message is much more confusing.
When thinking about it, stopifnot() should really issue a better error
message in this case. Patch attached. But I should perhaps send
it also to R-devel.
Stepan Kasal
> On Mon, Mar 12, 2018 at 8:15 AM, Stepan Kasal <kasal at ucw.cz> wrote:
>
> > Hello,
> > I stumbled over a problem:
> > stopifnot(m1 == m2)
> >
> > It works with vector or matrix, but does not work for classes from Matrix
> > package.
> >...
2018 Mar 12
0
Bug report: override stopifnot() ?
...hence your (expected) error message.
Cheers,
Bert
Bert Gunter
"The trouble with having an open mind is that people keep coming along and
sticking things into it."
-- Opus (aka Berkeley Breathed in his "Bloom County" comic strip )
On Mon, Mar 12, 2018 at 10:53 AM, Stepan Kasal <kasal at ucw.cz> wrote:
> Hello,
>
> On Mon, Mar 12, 2018 at 09:30:59AM -0700, William Dunlap wrote:
> > Why don't you use
> > stopifnot( all(m1 == m2) )
> > ?
>
> good question. Even though I use
> aseert np.all(m1 == m2)
> when working wit...
2018 Mar 12
2
Bug report: override stopifnot() ?
...= m2) that would just work,
but there is also is.logical(m1 == m2) that id FALSE.
Would it be possible if Matrix package redefined stopifnot() ?
(If there is a bug tracking database for package Matrix, I would be happy to insert this report there.)
Thank you very much for the package,
Stepan Kasal
2018 Mar 12
0
Bug report: override stopifnot() ?
Why don't you use
stopifnot( all(m1 == m2) )
?
Bill Dunlap
TIBCO Software
wdunlap tibco.com
On Mon, Mar 12, 2018 at 8:15 AM, Stepan Kasal <kasal at ucw.cz> wrote:
> Hello,
> I stumbled over a problem:
> stopifnot(m1 == m2)
>
> It works with vector or matrix, but does not work for classes from Matrix
> package.
>
> In the source of stopifnot(), there is all(m1 == m2) that would just work,
> but the...
2006 May 10
2
A minor patch to spec file
Hello,
in order to compile sppex on my Fedora, I had to do the following
changes. Please consider installing them to the main tree.
Thanks for your work,
Stepan Kasal
--- /usr/src/redhat/SPECS/Speex.spec 2006-02-15 13:13:48.000000000 +0100
+++ /usr/src/redhat/SPECS/Speex.spec.new 2006-05-10 11:00:25.000000000 +0200
@@ -6,7 +6,7 @@
Name: %name
Version: %ver
Release: %rel
-Copyright: BSD
+License: BSD
Group: Application/Devel
Source: http://www.speex.org/dow...
2006 May 10
0
A minor patch to spec file
Actually, in all the examples I've seen, people are using "Copyright"
and not "License". Any reference for the change you're proposing? Also,
pcm_wrapper.h is gone in svn, so it's a non-issue now.
Jean-Marc
Le mercredi 10 mai 2006 ? 11:06 +0200, Stepan Kasal a ?crit :
> Hello,
> in order to compile sppex on my Fedora, I had to do the following
> changes. Please consider installing them to the main tree.
>
> Thanks for your work,
> Stepan Kasal
>
> --- /usr/src/redhat/SPECS/Speex.spec 2006-02-15 13:13:48.000000000 +0100
>...
2009 Nov 30
1
non-threaded perl no longer in .spec file
Hello,
I'm setting up a new server on 5.4 and noticed this in the perl.spec file:
* Mon Jul 21 2008 Stepan Kasal - 4:5.8.8-14.el5
- add two patches, which...
- Resolves: #435505, #431041
- remove %%define threading, the non-threading variant is not supported,
Related: 435376
That comment wasn't there when I set up a server on 5.2 a few months
back and the %define threading option was still in the per...