Contents

select_01

finds booleans for occurences of members of taxon among members of taxon_src

Syntax

[sel, taxa_src] = select_01(taxon_src, taxon_sel)

Description

Finds booleans for occurences of members of taxon among members of taxon_src

Input

Output

Remarks

The names of members of taxon can be found by [sel nm] = select_01(taxon_src, taxon); nm(sel)

Example of use

sel = select_01('Aves'); or sel = select_01({'Aves','Mammalia'); or sel = select_01('Animalia',{'Aves','Mammalia'});

sel_fish = select_01('Vertebrata') & ~select_01('Tetrapoda'); or sel_fish = select_01({'Myxini','Cephalaspidomorphi','Chondrichthyes','Actinopterygii','Sarcopterygii'})