Topic profile page for Boolean array.
This page has aggregated data from forum posts, threads, listings, online discussions, newsgroups, messageboards, and other online sources which contain user generated content for the term: Boolean array.
Topic "Boolean array" was discussed 0 times on 0 sites in last 3 months
Started 3 weeks, 2 days ago (2009-11-24 04:40:00)
by toniaz
Hi everyone, let's say I want to wire a 2*2 boolean array to a case structure, and execute events according to the (I don't know the exact term) but I'll go with coordinates of the elements in the array... e.g. if (0,0) is true do this, else... So when I directly wire the array to the case structure, a broken wire appears indicating two different data types (array/element). Any ...
Started 3 weeks, 3 days ago (2009-11-23 08:21:00)
by GerdW
Hi T.A., 1) ReplaceArraySubset with indices 0&1 and element=TRUE. 2) OR Array with an array constant of [(F,T),(F,F)] Message Edited by GerdW on 11-23-2009 03:22 PM
Started 1 month ago (2009-11-12 13:16:00)
by MRMDry
I am using DAQmx to send digital output for a line (not a port). The input requires a boolean array of one element. I want to use a T/F boolean from an On/Off button as inpuit to the DAQmx digital out. How does one get a Boolean to a 1-D, single member, boolean array? (I can make an 8 or 16-member array, but the DAQmx does not take it) My version is 8.6. This seems ...
Started 1 month ago (2009-11-12 16:49:00)
by Dennis Knutson
First, if you want to use a single Boolean, then the DAQmx Write Digital>Single Channel>Single Sample>Boolean will allow you to wire a Boolean directly and you do not need an array. Second, if you don't want to change the DAQmx Write, then just wire the Boolean to the Build Array function.
Started 1 month, 2 weeks ago (2009-10-28 00:00:00)
by BestJewSinceJC
You can't add slots to an array. It's impossible. You can create a new array with 5 more slots however, and copy in the contents. Although I hope an instructor didn't tell you to do this because it is a bad idea - instead, double the size of the array.
Started 2 months, 2 weeks ago (2009-09-28 15:00:00)
by _kp
Quote: Originally Posted by keithiopia Thanks for your reply! I've no idea what an array in Flash is - I guess it's time to learn that, and some boolean. So basically I'd want it to say, if the arrow movieclip animation is still running, don't try to run it again? oh sorry, that was just a typo, I meant 'arrow' and...
Started 2 months, 3 weeks ago (2009-09-26 15:35:00)
by hang_vt
Code: const fi='matran.inp'; fo='matran.out'; var f:text; n,m,i,j:byte; a:array[1..100,1..100] of byte; function min(x,i,j:byte):boolean; var k:byte; begin min:=true; for k:=1 to m do if a[i,k]x then begin max:=false; exit; end; end; begin assign(f,fi); reset(f);...