[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: plotting to a table?
From: |
James Sherman Jr. |
Subject: |
Re: plotting to a table? |
Date: |
Wed, 17 Oct 2012 15:38:58 -0400 |
Hi Nothal,
I'm not sure (and I think that this is what is stopping others from responding as well) what you mean by "plot a matrix". Is uitable some type of structure used in some other code (C++, python etc)? If you're looking for a visualization of a matrix (If a table is somehow different from a matrix, then please correct me), then you could use something like imshow to display the matrix as an image (if for example you're looking for patterns of high or low values). For example, if your matrix, say A, contains values from 1-100, then you do something like:
imshow(A, [1, 100])
to have a way to visualize the matrix.
Hope this helps,
James Sherman