This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
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
|
200 Solvers
Sum of diagonal of a square matrix
1159 Solvers
137 Solvers
535 Solvers
138 Solvers