Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
% 16 Jan-2013
% I now test Inf since the aim is to submit a problem between 7 and 9 AM sorry guys!
% Moreover some comments give the solution which is not fair
filetext = fileread('your_fcn_name.m')
assert(isempty(strfind(filetext, 'Inf')))
filetext = fileread('your_fcn_name.m')
assert(isempty(strfind(filetext, 'inf')))
% 18-Jan-2013
% test suite suggested by Joseph Kirk (thanks)
y_correct = false;
if str2double(datestr(now,'hh')) >= 7 & str2double(datestr(now,'hh')) <= 9
y_correct = true;
end
assert(isequal(y_correct,true))
filetext =
'function y = your_fcn_name(x)
y = x;
end
%This code written by profile_id 15891539
'
filetext =
'function y = your_fcn_name(x)
y = x;
end
%This code written by profile_id 15891539
'
|
7277 Solvers
75 Solvers
Matrix which contains the values of an other matrix A at the given locations.
196 Solvers
276 Solvers
209 Solvers