A MATLAB .mat file will be shared between 40-50 people and it will include cost numbers. This .mat is used for some elaborate calculation however the cost numbers should not be openly revealed except for a very few (1-2 people out of 40-50).
So the 1-2 people would like to keep the 'exposed' version of this .mat file
a.dim.a = 1
a.dim.b = 2
a.dim.c = 3
a.cost.x = 11
a.cost.y = 12
and then place the 'hidden' version on the shared drive for everyone else.
a.dim.a = 1
a.dim.b = 2
a.dim.c = 3
a.cost.x = ADSAUJ#$#I
a.cost.y = SDHAUWH#@$
Be mindful that m-scripts are working on this .mat file so key-pair encryption isn't right since it's not a situation where we're trying to keep third parties from snooping on our data. It's about making some peoples life a bit difficult but if they worked hard, they could expose the numbers. So I'd like to ask what in your opinion is the best way of doing this?