optimget (options, 'FunValCheck',defaultopt, 'fast ')这是什么意思特别是''里面的
在定义结构体的时候,如果'FunValCheck'字段没有被赋值,那就是'fast',如果被赋值了,那就是赋的值。
opts = struct('strings',{},'FunValCheck',{});
val = optimget(opts,'FunValCheck','fast ');
opts1 = struct('strings','abc','FunValCheck',6);
va2 = optimget(opts1,'FunValCheck','fast ');