What existing function can be used to divide two columns of a matrix by each other?

4 visualizaciones (últimos 30 días)
I am working with a Matlab code that uses an XML-file. The XML structure is built up of multiple lines in style of: Name of the output: "...", Name of the input: "...", function: "..." I can not use self constructed functions, only ones that are already available in the Matlab Toolbox. Adding self-constructed function to the setup would be very time consuming, even though they would be simple. As an input, I can only put one Matrix. If I want to hand over 2 arrays of length x, they will be converted to a x*2 matrix and the function of choice will be applied to the matrix. Now I want to divide numbers in column 1 of the matrix by the numbers in column 2. Is there any way this can be done with preexisting functions?

Respuestas (2)

Sean de Wolski
Sean de Wolski el 25 de Oct. de 2016
x./y
?
In R2016b, this will implicitly expand to work on matrices with compatible sizes
  1 comentario
Johanna Maynes
Johanna Maynes el 25 de Oct. de 2016
Thank you for your answer. The issue is that I can not give two inputs. I essentially need a function:
function X=divide(X)
that only takes one Input, X, which is a Matrix.

Iniciar sesión para comentar.


Paul Smits
Paul Smits el 14 de Mayo de 2019
out=in(:,1)./in(:,2)

Categorías

Más información sobre Operating on Diagonal Matrices en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by