I've got a problem with my table output in Matlab. I'm sure it's a minor thing but google didn't have any answer for me, neither did the Matlab help.
As soon as the vector size of a variable is bigger than 3, the output will not display the actual value. Using the Matlab help example, this is what happens:
Elements in variable BloodPressue = 3, output for table T produces: T =
Age Height Weight **BloodPressure**
___ ______ ______ _________________
Smith 38 71 176 124 93 1
Johnson 43 69 163 109 77 1
Williams 38 64 131 125 83 1
Jones 40 67 133 117 75 1
Brown 49 64 119 122 80 1
Elements in variable BloodPressue = 4 (or bigger), output for table T produces: T =
Age Height Weight **BloodPressure**
___ ______ ______ _____________
Smith 38 71 176 [1x4 double]
Johnson 43 69 163 [1x4 double]
Williams 38 64 131 [1x4 double]
Jones 40 67 133 [1x4 double]
Brown 49 64 119 [1x4 double]
How can I see the values for BloodPressure inside the table in the Matlab workspace?
Hoping to get some help on this?
Many thanks!