action portfoliooptimizer_post_assets_correlation_matrix_effective_rank { label: "Correlation Matrix Effective Rank" description: "Compute the effective rank of an asset correlation matrix.\n\nReferences\n* [Olivier Roy and Martin Vetterli, The effective rank: A measure of effective dimensionality, 15th European Signal Processing Conference, 2007](https://ieeexplore.ieee.org/document/7098875)\n" provider: portfoliooptimizer method: POST path: "/assets/correlation/matrix/effective-rank" encoding: json input: { required: ["assets", "assetsCorrelationMatrix"] properties: { assets: { type: "integer" description: "The number of assets" } assetsCorrelationMatrix: { type: "array" description: "assetsCorrelationMatrix[i][j] is the correlation between the asset i and the asset j" items: { type: "array" items: { type: "number" } } } } } output: { type: "object" required: ["assetsCorrelationMatrixEffectiveRank"] properties: { assetsCorrelationMatrixEffectiveRank: { type: "array" description: "The effective rank of the asset correlation matrix" items: { type: "array" items: { type: "number" } } } } } }