Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
d=[1 2 2 2 1 2 1 2];
vector=[1 2 3 4 5 6 7 8];
new_vec=[1 4 6 8 9 12 13 16];
assert(isequal(change_direction(vector,d),new_vec))
filetext = fileread('change_direction.m')
assert(isempty(strfind(filetext, 'if')))
ans =
[]
filetext =
'function y = change_direction(x,y)
regexp '' '(?@y = 2*x-(y==1);)'
end
%This code written by profile_id 3999182
'
|
2 | Pass |
d=[ones(1,5) 2*ones(1,4) ones(1,3)];
vector=1:length(d);
new_vec=[1 3 5 7 9 12 14 16 18 19 21 23];
assert(isequal(change_direction(vector,d),new_vec))
filetext = fileread('change_direction.m')
assert(isempty(strfind(filetext, 'if')))
ans =
[]
filetext =
'function y = change_direction(x,y)
regexp '' '(?@y = 2*x-(y==1);)'
end
%This code written by profile_id 3999182
'
|
3 | Pass |
d=ones(1,6);
vector=[1 2 3 4 5 6];
new_vec=2*vector-1;
assert(isequal(change_direction(vector,d),new_vec))
filetext = fileread('change_direction.m')
assert(isempty(strfind(filetext, 'if')))
ans =
[]
filetext =
'function y = change_direction(x,y)
regexp '' '(?@y = 2*x-(y==1);)'
end
%This code written by profile_id 3999182
'
|
4 | Pass |
d=ones(1,50);
vector=zeros(1,50);
new_vec=vector-1;
assert(isequal(change_direction(vector,d),new_vec))
filetext = fileread('change_direction.m')
assert(isempty(strfind(filetext, 'if')))
ans =
[]
filetext =
'function y = change_direction(x,y)
regexp '' '(?@y = 2*x-(y==1);)'
end
%This code written by profile_id 3999182
'
|
Find the largest value in the 3D matrix
1056 Solvers
2814 Solvers
Duplicate each element of a vector.
518 Solvers
367 Solvers
119 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!