Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%% 1 file
fclose('all');
fid = fopen('titi.txt','w+')
assert(isequal(your_fcn_name, {'titi.txt'}))
fid =
3
|
2 | Fail |
%% 2 files
fclose('all');
fid = fopen('titi.txt','w+')
fid = fopen('cloclo.mat3','w+')
assert(isequal(your_fcn_name, {'titi.txt','cloclo.mat3'}))
Error: File identifier must be an integer-valued scalar of type double.
|
3 | Fail |
%% zero files
fclose('all');
assert(isequal(your_fcn_name, {}))
Error: File identifier must be an integer-valued scalar of type double.
|
Find the numeric mean of the prime numbers in a matrix.
6781 Solvers
17120 Solvers
Back to basics 19 - character types
225 Solvers
246 Solvers
136 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!