How Can I Display 60x60 Matrices in MATLAB?

  • Thread starter Thread starter yeongchuan88
  • Start date Start date
  • Tags Tags
    Matrices
AI Thread Summary
To display 60x60 matrices in MATLAB, simply type the variable name without a semicolon. For example, entering "input_pattern" will show the matrix. Using a semicolon after the variable name suppresses the output, meaning "input_pattern;" will not display the matrix.
yeongchuan88
Messages
4
Reaction score
0
[input_pattern, input_class]=loading(file_name,no_sample,no_vector);

input_pattern and input_class are 60 X 60 matrices, how can I display these matrices ?

Thank you.
 
Physics news on Phys.org
You'll have to let us know what language / program this is in. If this is MATLAB, all you need to do do display is to type the variable name. For instance:

>> input_pattern

will display the 60x60 matrix. However, using the semicolon ';' suppresses display. Typing the following in MATLAB won't display the matrix:

>> input_pattern;
 
Back
Top