Re: Large Two Dimensional Array

2014-01-29 Thread Denis McMahon
On Tue, 28 Jan 2014 21:25:54 -0800, Ayushi Dalmia wrote: Hello, I am trying to implement IBM Model 1. In that I need to create a matrix of 5*5 with double values. Currently I am using dict of dict but it is unable to support such high dimensions and hence gives memory error. Any

Large Two Dimensional Array

2014-01-28 Thread Ayushi Dalmia
Hello, I am trying to implement IBM Model 1. In that I need to create a matrix of 5*5 with double values. Currently I am using dict of dict but it is unable to support such high dimensions and hence gives memory error. Any help in this regard will be useful. I understand that I cannot

Re: Large Two Dimensional Array

2014-01-28 Thread Ayushi Dalmia
On Wednesday, January 29, 2014 10:55:54 AM UTC+5:30, Ayushi Dalmia wrote: Hello, I am trying to implement IBM Model 1. In that I need to create a matrix of 5*5 with double values. Currently I am using dict of dict but it is unable to support such high dimensions and hence gives

Re: Large Two Dimensional Array

2014-01-28 Thread David Froger
Quoting Ayushi Dalmia (2014-01-29 06:25:54) Hello, I am trying to implement IBM Model 1. In that I need to create a matrix of 5*5 with double values. Currently I am using dict of dict but it is unable to support such high dimensions and hence gives memory error. Any help in this

Re: Large Two Dimensional Array

2014-01-28 Thread Ayushi Dalmia
On Wednesday, January 29, 2014 10:55:54 AM UTC+5:30, Ayushi Dalmia wrote: Hello, I am trying to implement IBM Model 1. In that I need to create a matrix of 5*5 with double values. Currently I am using dict of dict but it is unable to support such high dimensions and hence gives