Add AnyNANUM and AllNANUM to matrix


Version: 2026b

Type: Features

Category: Programming

Subcategory: Origin C

Jira: ORG-33375


Example:

void test_Any_ALL_NANUM()
{
    int rc;
    vector<BOOL>  vRowHasNANUM;
    
	matrix<double> mat1 = {
        {1, 1, 0,  1,  1,  0, NANUM},
        {1, 1, 0,  1, NANUM, NANUM, NANUM},
        {1, 0, 0, NANUM, NANUM, NANUM, NANUM}
    };

    rc=mat1.AnyNANUM(vRowHasNANUM);
    rc=mat1.AllNANUM(vRowHasNANUM);
}