A couple of things here:
Definition must match initialization. You are definining Dictionary and instantiating Dictionary<TKey, TValue>. What this means, based on what you are saying here:
Dictionary<string, double[][]> dict = new Dictionary<string, double[][]>();
I assume this is what you want. If so, your code might be something like this:
double[] d1 = { 1.0, 2.0 };
double[] d2 = { 3.0, 4.0 };
double[] d3 = { 5.0, 6.0, 7.0 };
double[][] dd1 = { d1 };
double[][] dd2 = { d2, d3 };
Dictionary<string, double[][]> dict = new Dictionary<string, double[][]>();
dict.Add("dd1", dd1);
dict.Add("dd2", dd2);
If that is it, your issue is solved.