How do I generate a function to satisfy given conditions.

I have a 6000 x 550 data matrix (X) and another 1 x 550 matrix (Y). I need to find a function such that the following holds true: mean(function(X))= Y . I do not know the form of the function and have no idea how to proceed. Is there any way to do this?
Cheers, Aditya.

Respuestas (2)

Sachin Ganjare
Sachin Ganjare el 22 de Oct. de 2012
You can use System Identification Toolbox
Refer link below for details:
Hope it helps!!
function result = TheFunction(X,Y)
result = repmat(Y, [size(X,1), 1]);
end

Categorías

Más información sobre Simulink en Centro de ayuda y File Exchange.

Preguntada:

el 22 de Oct. de 2012

Community Treasure Hunt

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

Start Hunting!

Translated by