comparison toolboxes/MIRtoolbox1.3.2/MIRToolbox/mirattacks.m @ 0:cc4b1211e677 tip

initial commit to HG from Changeset: 646 (e263d8a21543) added further path and more save "camirversion.m"
author Daniel Wolff
date Fri, 19 Aug 2016 13:07:06 +0200
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:cc4b1211e677
1 function varargout = mirattacks(orig,varargin)
2 % Obsolete function, replaced by mironsets(...,'Attacks',...)
3
4 aver.key = 'Smooth';
5 aver.type = 'Integer';
6 aver.default = 20;
7 option.aver = aver;
8
9 specif.option = option;
10
11 varargout = mirfunction(@mirattacks,orig,varargin,nargout,specif,@init,@main);
12
13
14 function [x type] = init(x,option)
15 x = mironsets(x,'Attack',option.aver);
16 type = mirtype(x);
17
18
19 function a = main(a,option,postoption)