The following MATLAB function M-file called test and the script are given % function function b = test (c) global a a =
Posted: Fri May 20, 2022 2:29 pm
The following MATLAB function M-file called test and the script are given % function function b = test (c) global a a = a + 1; b = c + a; end % % script clc, clear global a a = 3; b = test (a); q = a + b; what will be the resulting value of q in this script? 11 O 10 09 12