Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x= [0 0 1 1 2 2 3 3];
y= [0 1 0 1 0 1 0 1];
z=[-4 -1 -3 -2 0 -1 5 2];
c=[1 -2 3 -4];
assert(isequal(c,round(sufit(x,y,z))))
ans =
1 -2 3 -4
|
2 | Pass |
%%
x= rand(1,100);
y= rand(1,100);
z=7*x.^2-9*x.*y+11*y.^2-17;
c=[7 -9 11 -17];
assert(isequal(c,round(sufit(x,y,z))))
ans =
7 -9 11 -17
|
3 | Pass |
%%
x= rand(1,10000);
y= rand(1,10000);
z=17*x.^2-19*x.*y+11*y.^2-13;
c=[17 -19 11 -13];
assert(isequal(c,round(sufit(x,y,z))))
ans =
17 -19 11 -13
|
Find the peak 3n+1 sequence value
1108 Solvers
875 Solvers
Find Index of maximum Value and maximum Value of a vector
145 Solvers
173 Solvers
111 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!