Problem 1042. Operate on matrices of unequal, yet similar, size
Solution Stats
Problem Comments
-
3 Comments
I don't see the point of outlawing feval.
The question is not clear at all! What is that the poster wants us to do?
The assignment is to "... create a function that operates on two arguments, performing one of the operations 'plus', 'minus', 'times', 'power', 'ldivide' or 'rdivide' (specified as the 3rd argument), after it has matched the sizes of first two input arguments."
So you have to make a functions that performs one of the basic math operations on two input arguments, and which operation it should be is determined by the 3rd input argument.
You are lucky that nowadays Matlab itself tries to match the size of the input arguments of those operations. So if you add a scalar to a vector, the program is that smart that it uses the scalar term for all vector terms. And when the 1st argument is a column vector, it is used for all columns of matrix when the 2nd argument is a matrix that has an equal number of rows as the column has.
When this 'problem' was created, Matlab did not do that by itself, and you had to take care of that yourself.
So the problem is is even easier than you may think. See 'help ops' for basic math in Matlab.
Solution Comments
Show commentsProblem Recent Solvers178
Suggested Problems
-
Find common elements in matrix rows
2361 Solvers
-
We love vectorized solutions. Problem 1 : remove the row average.
782 Solvers
-
698 Solvers
-
Convert a Cell Array into an Array
1323 Solvers
-
336 Solvers
More from this Author31
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!