math function for a vector

3 visualizaciones (últimos 30 días)
Eugene
Eugene el 8 de Jul. de 2016
Comentada: Eugene el 8 de Jul. de 2016
I'm working with Matlab R2012a. I have a simple question and I know there must be a simple answer, but searching and playing around with the syntax hasn't worked.
function sig = sigmoid( x)
sig = 1/(1+exp(-x));
end
This function works in Octave as is, but in Matlab it only works with scalars. What is the syntax for this function when x is a vector or matrix and I need this applied element wise? I tried the "." notation to no avail. I know I can loop through all the elements of x, but is there a more elegant way?

Respuesta aceptada

Azzi Abdelmalek
Azzi Abdelmalek el 8 de Jul. de 2016
Editada: Azzi Abdelmalek el 8 de Jul. de 2016
function sig = sigmoid( x)
sig = 1./(1+exp(-x));
  1 comentario
Eugene
Eugene el 8 de Jul. de 2016
Perfect, thank you! Not sure how I missed this.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Entering Commands en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by