forked from fieldtrip/fieldtrip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
dimassign.m
73 lines (68 loc) · 2.34 KB
/
dimassign.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
function M=dimassign(A,dim,idx,B)
% function M=dimassign(A,dim,idx,B);
%
% The purpose of the function is shown by the following example:
% If A and B are multidimensional matrixes,
% A=dimassign(A,4,23,B); is the same as A(:,:,:,23,:,:,...)=B;
% The difference is that the dimention is selected by a scalar, not by
% the place between the brackets.
% A(2,4,3)=B; will then be written as: A=dimassign(A,[1,2,3],[2,4,3],B);
% In this last case B, of cource, must be a scalar.
% A([1,2],:,3)=B; can be written as: A=dimassign(A,[1,3],{[1,2],3},B);
% Of cource, again, the dimensions of B must fit!
% (size(B)==size(A([1,2],:,3) in this particular case)
%
% See also the function DIMINDEX
% Copyright (C) 2005, Geerten Kramer
%
% This file is part of FieldTrip, see http://www.fieldtriptoolbox.org
% for the documentation and details.
%
% FieldTrip is free software: you can redistribute it and/or modify
% it under the terms of the GNU General Public License as published by
% the Free Software Foundation, either version 3 of the License, or
% (at your option) any later version.
%
% FieldTrip is distributed in the hope that it will be useful,
% but WITHOUT ANY WARRANTY; without even the implied warranty of
% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
% GNU General Public License for more details.
%
% You should have received a copy of the GNU General Public License
% along with FieldTrip. If not, see <http://www.gnu.org/licenses/>.
%
% $Id$
if(~iscell(idx))
if(~any(size(dim)==1)||~any(size(idx)==1)||ndims(dim)>2||ndims(idx)>2||...
length(dim)~=length(idx))
ft_error('dim and idx must be both scalars oor both must have the same length');
end
dummi=[];
for(i=1:length(idx))
dummi{i}=idx(i);
end
idx=dummi;
clear dummi;
end
if(~any(size(dim)==1)||~any(size(idx)==1)||ndims(dim)>2||ndims(idx)>2||...
length(dim)~=length(idx))
ft_error('dim and idx must be both scalars or both must have the same length');
end
if(~isequal(unique(dim),sort(dim)))
ft_error('dim must be unique, every dimention can be addressed only once');
end
Na=ndims(A);
for(i=1:max([max(dim),Na]))
ref=find(dim==i);
if(isempty(ref))
C{i}=':';
else
C{i}=idx{ref};
end
end
M=A;
try
M(C{:})=B;
catch
ft_error('Subscripted assignment dimension mismatch.');
end