Support nested vectorize function operation


Version: 2020b

Type: Bug Fixes

Category: Programming

Subcategory: Origin C

Jira: ORG-21381


Origin didn't support y=max(abs(vX)), and it will return NANUM. The followed failed prior to 2020b:

 void test_max()
 {
 	vector vX = { 1, 3, -2, 5, 4 };
 	
 	double d = max(abs( vX ));

        printf("d=%f", d);
 }