Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
  • Show
Clear All
new posts

  • 🙋 How to display full matrix names?

    This
    Code:
    clear all
    version 15.1
    
    matrix A = 32
    matrix rownames A = interview__id
    
    matrix list A
    results in
    Code:
    symmetric A[1,1]
                  c1
    interview_~d  32
    How do I tell matrix list to display full rownames without abbreviation?

  • #2
    Sergiy: Instead of
    Code:
    matrix list A
    try
    Code:
    matlist A, twidth(20)
    (See the help file for -matlist- for details on twidth.)

    Comment


    • #3
      This is exactly what I needed!
      Thank you, John!

      Comment

      Working...
      X