In this problem we would like to transform correlation coefficient MATRIX to a VECTOR which includes only unique elements of coefficient matrix. In other words we are interested in upper or lower symmetry part of correlation matrix.

Example

 input  = [1 a b; a 1 c; b c 1];
 output = [a b c];

Solution Stats

72 Solutions

32 Solvers

Last Solution submitted on Jul 01, 2025

Last 200 Solutions

Problem Comments

Solution Comments

Show comments
Loading...