Free all the variables of MASCARET for a specific instance
error = MASCARET_delete(id)
Identification number of the MASCARET instance returned by MASCARET_create
(Output argument) Error code value : zero indicates that no errors occurred
Free all the variables of MASCARET for a specific instance
// creation of 10 MASCARET models id = zeros(10,1); for i = 1:10 [err, id(i)] = MASCARET_create(); assert_checkequal(err,0); printf("\tA new model is created with the identification number :%d\n", id(i)); end // deletions for i = 1:10 err = MASCARET_delete(id(i)); assert_checkequal(err,0); printf("\tThe model is destroyed :%d\n", id(i)); end | ![]() | ![]() |