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

first hg version after svn
author wolffd
date Tue, 10 Feb 2015 15:05:51 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:e9a9cd732c1e
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)