I've read the documentation on models in Django and I don't see a clear way to implement what I'm hoping to do. I'd like to make a model where one of the fields is a 2 dimensional array. Something like this:
class DesignMatrix(models.Model):
Matrix_name = models.CharField(max_length=50)
Matrix_Description = models.CharField(max_length=50)
...
Matrix = a 2-dimensional array of float values
Guidance is greatly appreciated.