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
m =
{}
m =
'titi.txt'
|
2 | Pass |
%% 2 files
fclose('all');
fid = fopen('titi.txt','w+')
fid = fopen('cloclo.mat3','w+')
assert(isequal(your_fcn_name, {'titi.txt','cloclo.mat3'}))
fid =
3
fid =
4
m =
{}
m =
'titi.txt'
m =
'titi.txt' 'cloclo.mat3'
|
3 | Pass |
%% zero files
fclose('all');
assert(isequal(your_fcn_name, {}))
m =
{}
|
81 Solvers
random picture with random colours
138 Solvers
Back to basics 4 - Search Path
322 Solvers
Convert a numerical matrix into a cell array of strings
455 Solvers
Back to basics 23 - Triangular matrix
634 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!