Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
assert(isequal(vect('x*x'),'x.*x'))
ans =
x.*x
|
2 | Pass |
%%
assert(isequal(vect('x^y'),'x.^y'))
ans =
x.^y
|
3 | Pass |
%%
assert(isequal(vect('x/z'),'x./z'))
ans =
x./z
|
4 | Pass |
%%
assert(isequal(vect('(x*y)/z^w'),'(x.*y)./z.^w'))
ans =
(x.*y)./z.^w
|
Determine whether a vector is monotonically increasing
11916 Solvers
4106 Solvers
732 Solvers
Determine Whether an array is empty
646 Solvers
Convert from Base 10 to base 5
203 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!