Containers.map(keys, values) works in octave new version. But since I am working for someone the octave version over there doesn't support this function.
I will explain the problem here
keys = {"ac","bc","cc"}; values = {"t_post","u_post","v_post" };
M = containers.Map(keys, values);
I have a functionality where I get the value of the key and when I pass it
Value = M(keys);
the output will look like t_post = M(ac), similarly 2nd index of keys should point to the 2nd index of Values and so on.
for example
for ac - output should be t_post
bc - it should be u_post
cc - it should be v_post