[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Dynamic c++ question: operators
From: |
Douglas Eck |
Subject: |
Dynamic c++ question: operators |
Date: |
Tue, 12 Jun 2001 10:35:31 +0200 |
User-agent: |
Mozilla/5.0 (X11; U; Linux 2.4.1 i686; en-US; rv:0.9.1) Gecko/20010607 |
Consider this octave code:
a=rand(5,5);
b=rand(5,5);
Can I do the following test directly in liboctave somehow?
c=a<b;
What about this?
c=(a<0)&(b>=0);
I believe I need to use for-loops but I'd love to
know that I can do it without for-loops.
Cheers,
Doug
--
Dr. Douglas Eck, http://www.idsia.ch/~doug
Istituto Dalle Molle di Studi sull'Intelligenza Artificiale (IDSIA)
Neural Networks, Rhythm Perception and Production, Dynamical Systems
-------------------------------------------------------------
Octave is freely available under the terms of the GNU GPL.
Octave's home on the web: http://www.octave.org
How to fund new projects: http://www.octave.org/funding.html
Subscription information: http://www.octave.org/archive.html
-------------------------------------------------------------
- Dynamic c++ question: operators,
Douglas Eck <=