Page 1 of 1

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
by answerhappygod
The Following Matlab Function M File Called Test And The Script Are Given Function Function B Test C Global A A 1
The Following Matlab Function M File Called Test And The Script Are Given Function Function B Test C Global A A 1 (63.21 KiB) Viewed 31 times
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