J-G van der Toorn - MATLAB Cody - MATLAB Central

J-G van der Toorn

193
Rank
15
Badges
6960
Score
1 – 50 of 850

J-G van der Toorn received Famous badge

on 20 Sep 2020

J-G van der Toorn submitted a Comment to Problem 1042. Operate on matrices of unequal, yet similar, size

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.

on 25 Jun 2018

1 – 50 of 850
Go to top of page