'deal' doesn't distribute the elements of a calculated array out of cellfun
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Diaa
el 27 de Nov. de 2020
Comentada: Walter Roberson
el 23 de Jun. de 2021
For the following
syms syma symb
eqns = [...
syma*exp(symb)== 1,...
syma*exp(symb*1500) == 5,...
];
vars = [syma symb ];
[sola, solb ] = deal(cellfun(@(C) double(C),struct2cell(vpasolve(eqns,vars)),'UniformOutput',true)')
the ouput is
sola = 0.9989 0.0011
and
solb = 0.9989 0.0011
while, expectedly, sola should take only the first value 0.9989 and solb should take inly the second value 0.0011.
0 comentarios
Respuesta aceptada
Walter Roberson
el 27 de Nov. de 2020
deal has never done that for any kind of variable.
You are calculating a single vector in the cellfun, so your code with deal() comes down to:
[A,B] = deal([9 11])
deal() has two functions:
%assign the same value to multiple variables
[A, B] = deal(9)
%historic. split multiple outputs between multiple variables:
C = num2cell([9 11]);
[A, B] = deal(C{:})
%these days you can do that without the deal() call:
C = num2cell([10 12]);
[A, B] = C{:}
Neither of those modes splits a vector into multiple output variables.
Expand = @(C) C{:};
Split = @(V) Expand(num2cell(V));
[A, B] = Split([11 13])
6 comentarios
Walter Roberson
el 23 de Jun. de 2021
The amount of thought needed to get the correct solution using subsref() far exceeds any execution time you might hypothetically gain by using subsref() for this purpose. The subsref version is hard to maintain. And requires two helper function calls (to num2cell and to substruct)
Más respuestas (0)
Ver también
Categorías
Más información sobre Time Series Objects 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!