about summary refs log tree commit diff
path: root/sourcecodes/bnt-master/BNT/@assocarray/assocarray.m
blob: 84f963619534c9a32b80343cd62f06537f768aa7 (plain)
1
2
3
4
5
6
7
8
9
10
function A = assocarray(keys, vals)
% ASSOCARRAY Make an associative array
% function A = assocarray(keys, vals)
%
% keys{i} is the i'th string, vals{i} is the i'th value.
% After construction, A('foo') will return the value associated with foo.

A.keys = keys;
A.vals = vals;
A = class(A, 'assocarray');