Run every element through a function and return a new array
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Adam Kepinski
el 16 de Nov. de 2017
Respondida: Andrei Bobrov
el 16 de Nov. de 2017
Hi, I have a 1000x1 table and I want to run every row through a function y=a*x+b-1 where a and be are constants, and x are the elements from the table. The result should be a new 1000x1 table. Can anybody help?
Cheers.
0 comentarios
Respuesta aceptada
Adam
el 16 de Nov. de 2017
doc rowfun
using
func = @(x) a*x + b - 1;
should work for this provided a and b are already defined at the point you include the definition of func.
0 comentarios
Más respuestas (1)
Andrei Bobrov
el 16 de Nov. de 2017
a = 3;
b = 4;
T_out = rowfun(@(x)a*x+b-1,T,'OutputV','data');
0 comentarios
Ver también
Categorías
Más información sobre Logical en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!