English 中文(简体)
对应的ID(MATLAB)矩阵中重复值
原标题:repeat a value in a matrix for a matching ID (MATLAB)

我需要你帮助解决下列问题。 Column1显示了一种按分类的分类。 第2栏中的任何非南值都应列入配对组(Col1)。

mat = [ ...
        1  nan 
        1  0.1
        1  nan
        1  nan
        2  nan
        2  nan
        2  nan
        3  0.5
        4  nan
        4  nan
        4  nan
        5  0.2
        5  nan ] ;

ans = [ ...
        1  0.1 
        1  0.1
        1  0.1
        1  0.1
        2  nan
        2  nan
        2  nan
        3  0.5
        4  nan
        4  nan
        4  nan
        5  0.2
        5  0.2 ] ;

请建议采用病媒化的办法。 数据是巨大的,而且已经投入到一旁。 在一个群体内(按专题)永远不会有多种非南价值(栏2)。 感谢!

最佳回答

利用实现以下目标:

values = accumarray(mat(:,1),mat(:,2),[],@min);
mat(:,2) = values(mat(:,1));

I use the function MIN here for convenience, since it will return the non-NaN value if there is one, or NaN if that s all there is. It s simpler than the logic involved in checking for any non-NaN values using, say, the function ISNAN. You could actually use the function MAX as well, since it behaves the same way in this case.

问题回答

暂无回答




相关问题
Matrix to Represent a Triangle in Screen Space

So i have a set of four points in 3D Space. P1 [0, 0, 0] P2 [128, 0, 0] P3 [0, 128, 0] P4 [128, 128, 0] Which I m then projecting orthographically to the screen effectively giving me two ...

Multiply a 3D matrix with a 2D matrix

Suppose I have an AxBxC matrix X and a BxD matrix Y. Is there a non-loop method by which I can multiply each of the C AxB matrices with Y?

matrix and vector template classes in c++

#include <array> template <typename T> class Vector4<T> { std::array<T, 4> _a; // or T _a[4]; ? }; template <typename T> class Matrix4<T> { std::array<...

Linear Independence Matrix

Suppose we have a m by n matrix A with rank m and a set K⊆{1..n} such that the columns of A indexed by K are linearly independent. Now we want to extend K and find a set L so that k⊆L and columns ...

Difference between MATLAB s matrix notations

How do you read the following MATLAB codes? #1 K>> [p,d]=eig(A) // Not sure about the syntax. p = 0.5257 -0.8507 -0.8507 -0.5257 d = ...

Strange error when using sparse matrices and glmnet

I m getting a weird error when training a glmnet regression. invalid class "dgCMatrix" object: length(Dimnames[[2]]) must match Dim[2] It only happens occasionally, and perhaps only under larger ...

Java large datastructure for storing a matrix

I need to store a 2d matrix containing zip codes and the distance in km between each one of them. My client has an application that calculates the distances which are then stored in an Excel file. ...

Checking row and column for a word in python

I am trying to create a checking program to see if the word is in a matrix horizontally or vertically. I have the code for checking the row, but would checking the column be similar to the row code? ...

热门标签