Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x=[1 -4 64 -2304 147456 -14745600];
n=3;
y=[1 -4 64];
assert(isequal(procrustes(x,n),y))
|
2 | Pass |
%%
x=[2 -16 384 -18432 1474560];
n=8;
y=[2 -16 384 -18432 1474560 0 0 0];
assert(isequal(procrustes(x,n),y))
|
3 | Pass |
%%
x=[8 -96 3072 -184320 17694720];
n=0;
assert(isempty(procrustes(x,n)))
|
4 | Pass |
%%
x='0.314 arcseconds';
n=12;
y='0.314 arcsec';
assert(isequal(procrustes(x,n),y))
|
5 | Pass |
%%
x='credible fishers';
n=20;
y='credible fishers ';
assert(isequal(procrustes(x,n),y))
|
Find common elements in matrix rows
808 Solvers
Matrix which contains the values of an other matrix A at the given locations.
195 Solvers
Find the elements of a matrix according to a defined property.
57 Solvers
221 Solvers
145 Solvers