AstF=AstFilter
%AstF.<tab>
F=AstFilter.get;
F
F=AstFilter.get('SDSS')
AstFilter.get([],'V');
F = AstFilter.get({'PTF','sdss'});
F=AstFilter.get;
F=search(F,'sds')
F=AstFilter.get;
all_family(F)
F=AstFilter.get('SDSS')
plot(F)
% or
stairs(F)
F=AstFilter.get('WFC3','F160W')
F1=shift(F,0.3);
plot([F;F1])
F=AstFilter.get('SDSS');
Fu=interp(F(1),(3000:1:4000)')
% construct a new Filter
F=AstFilter;
% set the filter family and name
F.family='Ofek';
F.band  ='Eran';
% populate it with some filter shape (top-hat):
F.T = [4000 0; 4001 1; 4010 1; 4011 0];
% add the new filter F into the filters database in memory
F1  = add_filter(F);
% update the filter database on disk
% save(F1)
F=AstFilter.get('2MASS');
plot(F(1));
hold on;
plot(filter_fun1(F(1),@sqrt))
The class AstFilter has no Constant property or Static method named 'mlx'.