REVIEW 4 major objections 6 minor 49 references
NestyNet. I. Physics Functions Are Hard to Fit with Neural Networks: A Framework for Accurate Surrogates and Analytic Derivatives
T0 review · 4 major / 6 minor · reviewed 2026-08-07 · deepseek-v4-flash
Pith's one-line read On the 120-equation AI Feynman benchmark, NestyNet reports median 2,100x better function values, 1,400x better first derivatives, and 780x better second derivatives than Adam-trained MLPs, with all derivatives analytic.
desk verdict Solid, well-engineered framework with believable analytic-derivative gains; headline factors need a harder baseline and number reconciliation before I'd quote them. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The central object is the segmented softplus network, $f_o(x)=\sum_s a_{os}\sigma(z_{os})$ with $\sigma(z)=\log(1+e^z)$ and each preactivation $z_{os}=K_{os}\cdot x+b_{os}$ affine in the inputs; the softplus is a smooth hinge, so the model is a sum of smooth pieces that can represent multiscale structure while remaining twice differentiable. All differential operators descend from the gate factor $g=\sigma'(z)=1/(1+e^{-z})$: gradients are $\sum a\,g\,K$, Hessians are $\sum a\,g(1-g)\,KK^T$, and the Laplacian collapses to $\sum a\,g(1-g)\,\|K\|^2$, so it costs $O(SWN_x)$ instead of forming a dense Hessian. The same softplus atom sits on the polylogarithm ladder, since $\sigma(z)=-\mathrm{Li}_1(-e^z)$ and $d/dz\,\mathrm{Li}_\nu(-e^z)=\mathrm{Li}_{\nu-1}(-e^z)$, which supplies exact antiderivatives along lines and over boxes. The optimizer is a predictive Levenberg-Marquardt scheme that orders parameters by output-segment, exploits the exact split of $J^T J$ into within-segment blocks and cross-segment coupling, starts from a deterministic canonical initialization built on the identity $\sigma(z)-\sigma(-z)=z$, and adds quadratic path extrapolation, Woodbury fast solves, and an L-BFGS rescue for stagnation.
What would settle it
Train a substantially stronger neural baseline on the same 120 AI Feynman equations and data splits, for example a residual network with several hidden layers of 256 units each, well-tuned initialization, and full-batch L-BFGS; if its median function and derivative errors come within a small factor of NestyNet's, the central improvement factors shrink proportionally and the paper's premise that geometry rather than capacity is the bottleneck would be called into question.
Extended reading notes
Core claim
The central claim is that the difficulty in fitting many physics functions with neural networks is not representational power but parameter-space geometry: the right parameters exist, but stiff, strongly correlated loss landscapes make them hard to find with first-order training. NestyNet meets that geometry with a deterministic segmented softplus architecture and a predictive second-order optimizer, and the paper reports that on the AI Feynman suite this combination lowers median function-value error by 2,100x, first-derivative error by 1,400x, and second-derivative error by 780x relative to a fixed two-hidden-layer tanh MLP trained by Adam, with gains of 540x, 450x, and 250x after L-BFGS refinement. Because every derivative is analytic, the improved accuracy does not come at the cost of speed: end-to-end Levenberg-Marquardt steps run up to about 44x faster than a vectorized automatic-differentiation baseline. The same machinery makes gradients, Hessians, Laplacians, and line or box antiderivatives available in closed form, and the paper demonstrates the payoff on PDE residuals and on recovering the vertical acceleration of a model Galactic disk from phase-space densities.
Load-bearing premise
The headline accuracy gains are measured against one fixed baseline, a two-hidden-layer tanh network with 64 units per layer trained in double precision, so the claim assumes that this baseline fairly represents how standard neural networks perform on physics functions.
Editorial extensions
If this is right
- Derivative-informed tasks inherit the accuracy gains: physics-informed residuals, Hamiltonian dynamics, and inverse-force estimation get closed-form Hessians, Laplacians, and mixed partials, and operator probes show the gain holds for directional derivatives, curvature contractions, and Laplacians.
- Value accuracy cannot be converted into gradient accuracy without simultaneous curvature control; the interpolation law makes that coupling explicit and gives a capacity-selection rule that needs no derivative data.
- Surrogates can be integrated exactly: line, axis-parallel, and hyperrectangle integrals of the segmented model are polylogarithm evaluations, so integrating a fitted surrogate adds no numerical error of its own.
- The framework extends beyond the segmented family: an automatic-differentiation adaptor feeds general neural models through the same predictive LM optimizer, and the matrix-free SPLA preconditioner keeps LM feasible at nearly $10^4$ parameters with near-linear scaling.
Reading between the lines
- Beyond the benchmark, the flat cost of the analytic Laplacian in input dimension suggests high-dimensional PDE workloads such as Fokker-Planck, Schrödinger, or Hamilton-Jacobi equations could see the largest relative speedups, since autograd Laplacians cost one backward pass per dimension.
- A testable diagnostic follows from the interpolation law: any fitted surrogate can report its spectral tightness ratio on held-out probes, and values well below 1 would signal broadband error where gradient accuracy cannot be inferred from value accuracy alone.
- The exact polylogarithm antiderivatives could be used to integrate fitted densities without quadrature in downstream normalization or Monte Carlo tasks, a possibility the paper does not develop.
- If the gains are representative of physics functions more broadly, the same coupled surrogate-optimizer recipe could improve equation-discovery pipelines that depend on stable mixed partials, rather than only pointwise fits.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper introduces NestyNet, a deterministic segmented softplus neural-network surrogate whose analytic derivatives (gradients, Hessians, Laplacians) and antiderivatives are available in closed form, coupled with a predictive Levenberg–Marquardt optimizer, a segment-native preconditioning framework (SPLA), and a compositional adaptor ecosystem. The central empirical claims are benchmarked on the 120-equation AI Feynman suite: median improvements over a fixed two-hidden-layer tanh MLP trained with Adam of about 2,100x on function values, 1,400x on first derivatives, and 780x on second derivatives, with smaller but still large factors after L-BFGS refinement; an end-to-end speed advantage over vectorized autograd reaching about 44x; two PINNacle PDE wins plus an expressivity study; and an application to recovering the vertical acceleration of the Galactic disk from the collisionless Boltzmann equation.
Significance. If the headline comparisons survive a more rigorous baseline protocol, NestyNet would be a practically valuable substrate for scientific machine learning: the analytic derivative and antiderivative machinery is correct and cheap, the canonical initialization gives reproducible fits, and the benchmark protocol is mostly disciplined (shared splits and transforms, a single declared suite, no per-equation refits, and row-level provenance with the code release). The paper is also commendably explicit about what it does not claim: SPLA is not needed for the main results, the supervised PDE fits are not PINN solutions, and the interpolation law is an empirical regularity rather than a theorem. The main weakness is that the quantitative magnitude of the claimed gains rests on a single unsearched MLP baseline and on single-run medians, so the improvement factors should be treated as upper-bound estimates until the baseline is strengthened or the claims are narrowed.
major comments (4)
- [§8.3, Figure 2] The headline improvement factors are ratios against a single fixed baseline: a two-hidden-layer tanh MLP with 64 units per layer, trained in double precision. No hyperparameter search, learning-rate schedule, architecture variants, restarts, or training budgets are reported for this baseline, and its parameter count is not given. Because the abstract's 2,100x/1,400x/780x and 540x/450x/250x claims are measured against this one network, the representativeness of the baseline is load-bearing. Please either add a small, declared baseline-selection protocol on the same 120 equations (for example, a random search over width, depth, activation, and learning rate with the same splits and transforms) and report the resulting distribution of improvement factors, or explicitly restrict all headline claims to 'the fixed 64x64 tanh MLP baseline used here.' Without this, the quantitative magnitude of the claimed gains is not established.
- [Abstract; §8.3–§8.4, Figures 2–3] The numbers in the abstract do not match the numbers in the figures. The abstract quotes median improvements of 2,100x/1,400x/780x for Adam and 540x/450x/250x for L-BFGS, while Figure 2 reports 2,016x/1,572x/872x and 593x/475x/271x, and §8.4 reports yet another set (2,016x/960x/1,466x) for its RMS-norm analysis. Similarly, the integral gain is 5,260x in Figure 2 but roughly 4,800x in the conclusions. The source of the abstract values is not explained. Since these medians are the paper's central quantitative claims, please harmonize the values and state exactly which per-axis metrics, panels, and norm definitions produce each quoted factor.
- [§8.3, Figures 2–3] All improvement factors are single-run medians with no repeated-seed variability. The MLP baseline is randomly initialized, and no number of seeds, standard deviations, or per-equation variability is reported; the deterministic canonical initialization of NestyNet does not by itself determine the baseline's noise. Please report multiple seeds for the baseline (and ideally for NestyNet too) or provide a clear justification for why the medians are insensitive to seed choice, so the reader can judge whether the 98–100% win rates and the factor magnitudes are stable.
- [§10; §8.2–§8.3] The conclusion states that 'all of these results were obtained with a single, fixed hyperparameter configuration applied across the entire benchmark,' but the numerical sections use different model sizes and recipes: §8.2 crosses two model families and four training recipes, §8.3 uses dual-layer 20-segment models, and §8.7 sweeps segment counts up to 8,960 parameters. Please specify precisely which hyperparameters were fixed across which benchmark suite and which ones varied by design; as written, the reproducibility claim is ambiguous.
minor comments (6)
- [Figures 2–3] The caption says color encodes the benchmark equation index, but no color bar is shown; please add a color bar or remove the color encoding.
- [Table 2] The column headings appear garbled ('W all (s)', 'V al.'); please typeset them properly and define each column in the caption.
- [§8.5, footnote 8] The statement that torch.compile 'silently miscompiles the forward-mode autograd Jacobian to zero' is surprising and affects the choice of eager autograd as the baseline; please cite a PyTorch issue or include a minimal reproducer in the released code.
- [§8.2 vs §8.3] Section 8.2 retains 88 problems after excluding targets with dynamic range above four decades, while §8.3 reports results for all 120 problems with an asinh conditioning policy; please add one sentence explaining how the two protocols relate.
- [§5.2] The Armijo backtracking along the LM direction is mentioned, but no default constants or safeguarding details are given; please provide the Armijo parameters or a citation.
- [§8.4, Eq. (41)] The curvature-budget inequality is stated without derivation; a one-line derivation from Eq. (8) and g(1−g)≤1/4 would help readers verify the bound.
Circularity Check
No significant circularity: the central claims are external benchmark comparisons and independent empirical evaluations, and self-citations are peripheral.
full rationale
The paper's headline results (AI Feynman improvement factors, PINNacle transfers, derivative-speed comparisons, and the galactic-acceleration demonstration) are empirical evaluations against external benchmarks and independent baselines, not derivations that assume their conclusions. The derivative-gap 'interpolation law' is a classical Landau–Kolmogorov inequality (acknowledged as such, with citations to Hardy et al. 1952) followed by an empirical near-equality check; the tightness ratio is measured, not fitted, and the prediction of gradient gains from value and curvature gains is an algebraic consequence of the inequality, not a fitted parameter renamed as a prediction. Self-citations to the SPLA theory paper and to Papers II-IV are not load-bearing: the SPLA speedup in Figure 6 is a measured wall-clock comparison, and the cited theory paper supplies explanation rather than the evidence for the empirical result; Papers II-IV are downstream applications. Potential concerns about the fixed MLP baseline are fairness and representativeness issues, which are correctness risks, not circularity: no equation, parameter, or prediction in the paper is defined in terms of the target conclusion it is used to support. The paper is self-contained against external benchmarks, so the appropriate circularity score is 0.
Assumptions & free parameters
free parameters (4)
- Segment count S =
20 (dual-layer AI Feynman), 32 (PDE), 4 (Galactic disk)
- N_history (quadratic extrapolation history) =
10
- L-BFGS rescue parameters =
5 rejected steps trigger; 10 curvature pairs; 20 max iterations; 10 max attempts
- Patch family set F =
{mean, slope, quad}
assumptions (5)
- standard math Proposition 1 (interpolation inequality between L2 norms of value, gradient, and Hessian)
- standard math Polylogarithm identities d/dz Li_nu(-e^z) = Li_{nu-1}(-e^z)
- domain assumption Narrow-band error premise (rho_e ~ 1)
- domain assumption AI Feynman benchmark equations are representative of physics functions
- domain assumption Collisionless Boltzmann equation reduces to v d_z ln f + K_z d_v ln f = 0 for stationary phase-mixed populations
Cite this review
Pith. "Pith review of NestyNet. I. Physics Functions Are Hard to Fit with Neural Networks: A Framework for Accurate Surrogates and Analytic Derivatives." pith.science (2026). https://pith.science/paper/7ER3CP7R
@misc{pith2026260805862,
author = {Pith},
title = {Pith review of: NestyNet. I. Physics Functions Are Hard to Fit with Neural Networks: A Framework for Accurate Surrogates and Analytic Derivatives},
year = {2026},
howpublished = {\url{https://pith.science/paper/7ER3CP7R}},
note = {Machine review of arXiv:2608.05862}
}
abstract
Many of the smooth functions that matter most in physics are precisely the ones that standard neural network methods struggle to fit accurately. Here we present NestyNet, a coupled model-and-optimizer framework capable of fitting such targets to high accuracy while also delivering their gradients, Hessians, Laplacians, and antiderivatives analytically and at low cost. This makes it a natural substrate for scientific machine learning tasks. The model is a deterministic segmented analytic surrogate, and its optimizer is a second-order Levenberg--Marquardt scheme whose damping and linear solves are tailored to the stiff, strongly correlated parameter geometries induced by multiscale and sharply structured targets typical in physics and other scientific applications. On the AI Feynman benchmark of 120 physics equations, NestyNet achieves median improvement factors of $2\,100\times$ for function values, $1\,400\times$ for first derivatives, and $780\times$ for second derivatives relative to standard neural networks trained with first-order optimization (Adam). Even after refining those fits with quasi-Newton (L-BFGS) optimization, the corresponding improvements are $540\times$, $450\times$, and $250\times$. Owing to the analytic design it is up to $\approx 44\times$ faster than vectorized automatic-differentiation (autograd) baselines, with a margin growing with model size. The same analytic-derivative framework also supports vector- and complex-valued targets, measurement uncertainties in both inputs and outputs, and constraints, and its modules can be composed flexibly to build scientifically useful model architectures, all without reverting to autograd. Together, these components provide a practical modular framework for fitting difficult scientific surrogates while delivering accurate differential operators for subsequent analysis.
Figures
Figures from the paper (5 more)
Reference graph
Works this paper leans on
-
[1]
2018, Nature, 561, 360, doi: 10.1038/s41586-018-0510-7
Antoja, T., Helmi, A., Romero-G´ omez, M., et al. 2018, Nature, 561, 360, doi: 10.1038/s41586-018-0510-7
-
[2]
1966, Pacific Journal of Mathematics, 16, 1, doi: 10.2140/pjm.1966.16.1
Armijo, L. 1966, Pacific Journal of Mathematics, 16, 1, doi: 10.2140/pjm.1966.16.1
-
[3]
Bahcall, J. N. 1984, The Astrophysical Journal, 276, 169, doi: 10.1086/161601 Bienaym´ e, O., Famaey, B., Siebert, A., et al. 2014, Astronomy & Astrophysics, 571, A92, doi: 10.1051/0004-6361/201424478
doi:10.1086/161601 1984
-
[4]
2008, Galactic Dynamics, 2nd edn
Binney, J., & Tremaine, S. 2008, Galactic Dynamics, 2nd edn. (Princeton, NJ: Princeton University Press)
work page 2008
-
[5]
2013, The Astrophysical Journal, 779, 115, doi: 10.1088/0004-637X/779/2/115
Bovy, J., & Rix, H.-W. 2013, The Astrophysical Journal, 779, 115, doi: 10.1088/0004-637X/779/2/115
-
[6]
2012, The Astrophysical Journal, 756, 89, doi: 10.1088/0004-637X/756/1/89
Bovy, J., & Tremaine, S. 2012, The Astrophysical Journal, 756, 89, doi: 10.1088/0004-637X/756/1/89
-
[7]
Brunton, S. L., Proctor, J. L., & Kutz, J. N. 2016, Proceedings of the National Academy of Sciences, 113, 3932, doi: 10.1073/pnas.1517384113
-
[8]
1999, SIAM Journal on Scientific Computing, 21, 792, doi: 10.1137/S106482759732678X
Cai, X.-C., & Sarkis, M. 1999, SIAM Journal on Scientific Computing, 21, 792, doi: 10.1137/S106482759732678X
Show all 49 references
-
[9]
2000, Experimental Mathematics, 9, 3, doi: 10.1080/10586458.2000.10504632 Cr´ ez´ e, M., Chereul, E., Bienaym´ e, O., & Pichon, C
Cohen, H., Rodriguez Villegas, F., & Zagier, D. 2000, Experimental Mathematics, 9, 3, doi: 10.1080/10586458.2000.10504632 Cr´ ez´ e, M., Chereul, E., Bienaym´ e, O., & Pichon, C. 1998, Astronomy & Astrophysics, 329, 920
2000
-
[10]
1989, Mathematics of Control, Signals and Systems, 2, 303, doi: 10.1007/BF02551274
Cybenko, G. 1989, Mathematics of Control, Signals and Systems, 2, 303, doi: 10.1007/BF02551274
1989 doi
-
[11]
A., & Udell, M
Frangella, Z., Tropp, J. A., & Udell, M. 2023, SIAM Journal on Matrix Analysis and Applications, 44, 718, doi: 10.1137/21M1466244
2023 doi
-
[12]
H., & Pereyra, V
Golub, G. H., & Pereyra, V. 1973, SIAM Journal on Numerical Analysis, 10, 413, doi: 10.1137/0710036
1973 doi
-
[13]
H., & Pereyra, V
Golub, G. H., & Pereyra, V. 2003, Inverse Problems, 19, R1, doi: 10.1088/0266-5611/19/2/201
2003 doi
-
[14]
Halko, N., Martinsson, P.-G., & Tropp, J. A. 2011, SIAM Review, 53, 217, doi: 10.1137/090771806
2011 doi
-
[15]
2024, in Advances in Neural Information Processing Systems, Vol
Hao, Z., Yao, J., Su, C., et al. 2024, in Advances in Neural Information Processing Systems, Vol. 37, 76721–76774, doi: 10.52202/079017-2442
2024 doi
-
[16]
H., Littlewood, J
Hardy, G. H., Littlewood, J. E., & P´ olya, G. 1952, Inequalities, 2nd edn. (Cambridge: Cambridge University Press)
1952
-
[17]
R., Millman, K
Harris, C. R., Millman, K. J., van der Walt, S. J., et al. 2020, Nature, 585, 357, doi: 10.1038/s41586-020-2649-2
2020 doi
-
[18]
2000, Monthly Notices of the Royal Astronomical Society, 313, 209, doi: 10.1046/j.1365-8711.2000.02905.x
Holmberg, J., & Flynn, C. 2000, Monthly Notices of the Royal Astronomical Society, 313, 209, doi: 10.1046/j.1365-8711.2000.02905.x
2000
-
[19]
1989, Neural Networks, 2, 359, doi: 10.1016/0893-6080(89)90020-8
Hornik, K., Stinchcombe, M., & White, H. 1989, Neural Networks, 2, 359, doi: 10.1016/0893-6080(89)90020-8
1989 doi
-
[20]
Hunter, J. D. 2007, Computing in Science & Engineering, 9, 90, doi: 10.1109/MCSE.2007.55
2007 doi
-
[21]
I., Famaey, B., & Monari, G
Ibata, R., Diakogiannis, F. I., Famaey, B., & Monari, G. 2021, The Astrophysical Journal, 915, 5, doi: 10.3847/1538-4357/abfda9
2021 doi
-
[22]
Kapteyn, J. C. 1922, The Astrophysical Journal, 55, 302, doi: 10.1086/142670
1922 doi
-
[23]
E., Kevrekidis, I
Karniadakis, G. E., Kevrekidis, I. G., Lu, L., et al. 2021, Nature Reviews Physics, 3, 422, doi: 10.1038/s42254-021-00314-5
2021 doi
- [24]
-
[25]
1989, Monthly Notices of the Royal Astronomical Society, 239, 605, doi: 10.1093/mnras/239.2.605
Kuijken, K., & Gilmore, G. 1989, Monthly Notices of the Royal Astronomical Society, 239, 605, doi: 10.1093/mnras/239.2.605
1989 doi
-
[26]
1991, The Astrophysical Journal Letters, 367, L9, doi: 10.1086/185920 La Cava, W., Orzechowski, P., Burlacu, B., et al
Kuijken, K., & Gilmore, G. 1991, The Astrophysical Journal Letters, 367, L9, doi: 10.1086/185920 La Cava, W., Orzechowski, P., Burlacu, B., et al. 2021, in Proceedings of the Neural Information Processing Systems Track on Datasets and Benchmarks, Vol. 1, doi: 10.48550/arXiv.2107.14351
-
[27]
1944, Quarterly of Applied Mathematics, 2, 164, doi: 10.1090/qam/10666
Levenberg, K. 1944, Quarterly of Applied Mathematics, 2, 164, doi: 10.1090/qam/10666
1944 doi
-
[28]
1981, Polylogarithms and Associated Functions (New York: North-Holland) NestyNet
Lewin, L. 1981, Polylogarithms and Associated Functions (New York: North-Holland) NestyNet. I. Accurate Surrogates and Analytic Derivatives25
1981
-
[29]
C., & Nocedal, J
Liu, D. C., & Nocedal, J. 1989, Mathematical Programming, 45, 503, doi: 10.1007/BF01589116
1989 doi
-
[30]
MacKay, D. J. C. 1992, Neural Computation, 4, 415, doi: 10.1162/neco.1992.4.3.415
1992 doi
-
[31]
Marquardt, D. W. 1963, Journal of the Society for Industrial and Applied Mathematics, 11, 431, doi: 10.1137/0111030
1963 doi
-
[32]
2006, SIAM Journal on Scientific Computing, 27, 1742, doi: 10.1137/040608246
Nabben, R., & Vuik, C. 2006, SIAM Journal on Scientific Computing, 27, 1742, doi: 10.1137/040608246
2006 doi
-
[33]
1980, Mathematics of Computation, 35, 773, doi: 10.1090/S0025-5718-1980-0572855-7
Nocedal, J. 1980, Mathematics of Computation, 35, 773, doi: 10.1090/S0025-5718-1980-0572855-7
1980 doi
-
[34]
Nocedal, J., & Wright, S. J. 2006, Numerical Optimization, 2nd edn. (Springer), doi: 10.1007/978-0-387-40065-5
2006 doi
-
[35]
Oort, J. H. 1932, Bulletin of the Astronomical Institutes of the Netherlands, 6, 249
1932
- [36]
- [37]
-
[38]
Raissi, M., Perdikaris, P., & Karniadakis, G. E. 2019, Journal of Computational Physics, 378, 686, doi: 10.1016/j.jcp.2018.10.045
2019 doi
-
[39]
Read, J. I. 2014, Journal of Physics G: Nuclear and Particle Physics, 41, 063101, doi: 10.1088/0954-3899/41/6/063101
2014 doi
-
[40]
2003, Iterative Methods for Sparse Linear Systems, 2nd edn
Saad, Y. 2003, Iterative Methods for Sparse Linear Systems, 2nd edn. (SIAM), doi: 10.1137/1.9780898718003
2003 doi
-
[41]
2020, Astronomy & Astrophysics, 643, A75, doi: 10.1051/0004-6361/202038535
Famaey, B. 2020, Astronomy & Astrophysics, 643, A75, doi: 10.1051/0004-6361/202038535
2020 doi
-
[42]
K., Machta, B
Transtrum, M. K., Machta, B. B., & Sethna, J. P. 2011, Physical Review E, 83, 036701, doi: 10.1103/PhysRevE.83.036701
2011 doi
- [43]
-
[44]
2020, Science Advances, 6, eaay2631, doi: 10.1126/sciadv.aay2631
Udrescu, S.-M., & Tegmark, M. 2020, Science Advances, 6, eaay2631, doi: 10.1126/sciadv.aay2631
2020 doi
-
[45]
E., et al
Virtanen, P., Gommers, R., Oliphant, T. E., et al. 2020, Nature Methods, 17, 261, doi: 10.1038/s41592-019-0686-2
2020 doi
-
[46]
2019, Astronomy & Astrophysics, 623, A30, doi: 10.1051/0004-6361/201834718
Widmark, A. 2019, Astronomy & Astrophysics, 623, A30, doi: 10.1051/0004-6361/201834718
2019 doi
-
[47]
Woodbury, M. A. 1950, Inverting Modified Matrices, Tech. Rep. Memorandum Report 42, Statistical Research
1950
-
[48]
2005, Numerical Methods and Algorithms, Vol
Zhang, F., ed. 2005, Numerical Methods and Algorithms, Vol. 4, The Schur Complement and Its Applications (New York: Springer), doi: 10.1007/b105056
2005 doi
-
[49]
2013, The Astrophysical Journal, 772, 108, doi: 10.1088/0004-637X/772/2/108
Zhang, L., Rix, H.-W., van de Ven, G., et al. 2013, The Astrophysical Journal, 772, 108, doi: 10.1088/0004-637X/772/2/108
2013 doi
Reviewed August 7, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.