functioncheckrule - Check rules in fls structure
checkrule verify the rule representation in the fls structure.
// GET A FLS fls=loadfls(flt_path()+"demos/fan1.fls"); [all_ok,mes]=checkrule(fls); if (all_ok>0) then warning(mes); end // Make the first rule invalid fls.rule(1,1)=500; [all_ok,mes]=checkrule(fls); if (all_ok>0) then warning(mes); end
Jaime Urzua Grez