Subsections


Select

\epsfig{file=SELECT_f.eps,width=90.00pt}

Library

Branching

Description

This block routes one of the regular inputs to the unique regular output. the choice of which input is to be routed is done, initially by the "initial connected input" parameter. Then, every time the block is activated through its i-th input activation port, the i-th regular input value port is put to the regular output.

Dialog Box

Set parameters
number of inputs 2
initial connected input 1

Default properties

Interfacing function

scilab/macros/scicos_blocks/branching/SELECT_f.sci

Computational function (type 2)


/* Copyright INRIA */
#include "../machine.h"

void 
selector(flag,nevprt,t,xd,x,nx,z,nz,tvec,ntvec,rpar,nrpar,
	       ipar,nipar,inptr,insz,nin,outptr,outsz,nout)
integer *flag,*nevprt,*nx,*nz,*ntvec,*nrpar,ipar[],*nipar,insz[],*nin,outsz[],*nout;
double x[],xd[],z[],tvec[],rpar[];
double *inptr[],*outptr[],*t;

{
    int k;
    double *y;
    double *u;
    int nev,ic;
    
    ic=(int)z[0];
    if ((*flag)<3) {
	ic=-1;
	nev=*nevprt;
	while (nev>=1) {
	    ic=ic+1;
	    nev=nev/2;
	}
    }
    if (*nin>1) {
      y=(double *)outptr[0];
      u=(double *)inptr[ic];
      for (k=0;k<outsz[0];k++)
	*(y++)=*(u++);  
    }
    else {
      y=(double *)outptr[ic];
      u=(double *)inptr[0];
      for (k=0;k<outsz[0];k++)
	*(y++)=*(u++);  
    }
}

Ramine Nikoukhah 2004-06-22