You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
auto fcnX = hydra::make_loglikehood_fcn(modelX, dataX);
188
+
auto fcnY = hydra::make_loglikehood_fcn(modelY, dataY);
189
+
auto fcnW = hydra::make_loglikehood_fcn(modelY, dataY);
190
+
auto fcnZ = hydra::make_loglikehood_fcn(modelZ, dataZ);
191
+
192
+
auto sim_fcn1 = hydra::make_simultaneous_fcn(fcnx, fcny);
193
+
auto sim_fcn2 = hydra::make_simultaneous_fcn(fcnw, fcnz);
194
+
auto sim_fcn = hydra::make_simultaneous_fcn(sim_fcn1, sim_fcn2);
195
+
...
187
196
}
188
197
```
189
-
Moreover, the generic interface allows to build up a simultaneous FCN object by composing usual FCNs and simultaneous FCNs. An example of such new method can be found in `examples/fit/simultaneous_fit.inl`.
198
+
Moreover, the generic interface allows to build up a simultaneous FCN object by composing usual FCNs and simultaneous FCNs. An example of such new method can be found in `examples/fit/simultaneous_fit.inl`.
0 commit comments