scsig805
- 11
- 0
Can anyone tell me how to make MATLAB keep matrices in abreviated form? For example I want a rand(100*100) matrix that doesn't have all the coefficients listed out. Thanks Sean.
>> A = rand(3)
A =
0.8147 0.9134 0.2785
0.9058 0.6324 0.5469
0.1270 0.0975 0.9575
>> A = rand(3);
>>