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
|
405 Solvers
248 Solvers
random picture with random colours
138 Solvers
546 Solvers
Flip the vector from right to left
2672 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!