MATLAB : PROBLEM WITH CELLFUN AND TWO VARIABLES FUNCTION.

7 visualizaciones (últimos 30 días)
temptemp is 1 X 44 cell : every cell is 1 X 3130 array double.
tempwmul is 1 X 44 cell : every cell is 1 X 1 trained network.
I want to simulate every network with the relative array double :
for ilog=1:44
tempoutemp{ilog} = sim(tempwmul{ilog},temptemp{ilog});
end
in vectorized mode using cellfun :
tempoutemp=cellfun(@sim,tempwmul,temptemp,'UniformOutput', false);
The code doesn't return errors but in vectorized mode it uses always the first network for all array data and result is obviously different...some help?

Respuesta aceptada

Roman Müller-Hainbach
Roman Müller-Hainbach el 2 de Nov. de 2017
Try this:
tempoutemp = cellfun( @(network,arr)sim(network,arr), tempwmul,temptemp, 'un',0 );
  1 comentario
Emiliano Rosso
Emiliano Rosso el 3 de Nov. de 2017
It works fine but results are the sames: it uses only the first network for all data sets.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Image Data Workflows 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