Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
assert(isequal(vect('x*x'),'x.*x'))
ans =
x.*x
ans =
x.*x
ans =
x.*x
|
2 | Pass |
assert(isequal(vect('x^y'),'x.^y'))
ans =
x^y
ans =
x.^y
ans =
x.^y
|
3 | Pass |
assert(isequal(vect('x/z'),'x./z'))
ans =
x/z
ans =
x/z
ans =
x./z
|
4 | Pass |
assert(isequal(vect('(x*y)/z^w'),'(x.*y)./z.^w'))
ans =
(x.*y)/z^w
ans =
(x.*y)/z.^w
ans =
(x.*y)./z.^w
|
786 Solvers
All your base are belong to us
463 Solvers
Getting the absolute index from a matrix
211 Solvers
228 Solvers
452 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!