How Can I Display 60x60 Matrices in MATLAB?

  • Context: MATLAB 
  • Thread starter Thread starter yeongchuan88
  • Start date Start date
  • Tags Tags
    Matrices
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
1 reply · 2K views
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;