Jacobian (Calls: 5, Time: 219.885 s)
Generated 19-Jun-2021 04:39:11 using performance time.
function in file /nfs/inm_phd/07/d07944009/2021/0618-proj6/simpleNN/MATLAB/cnn/Jacobian.m
Copy to new window for comparing multiple runs
| Function Name | Function Type | Calls |
| CG | function | 5 |
| Line Number | Code | Calls | Total Time | % Time | Time Plot |
| 7 | net = cal_dzdS(model, net, siz... | 5 | 199.858 s | 90.9% | |
| 4 | net = feedforward(data, model,... | 5 | 20.026 s | 9.1% | |
| All other lines | 0.000 s | 0.0% | |||
| Totals | 219.885 s | 100% |
| Function Name | Function Type | Calls | Total Time | % Time | Time Plot |
| Jacobian>cal_dzdS | subfunction | 5 | 199.856 s | 90.9% | |
| feedforward | function | 5 | 20.025 s | 9.1% | |
| Self time (built-ins, overhead, etc.) | 0.003 s | 0.0% | |||
| Totals | 219.885 s | 100% |
| Line number | Message |
| 1 | Input argument 'param' might be unused, although a later one is used. Consider replacing it by ~. |
| Total lines in function | 7 |
| Non-code lines (comments, blank lines) | 5 |
| Code lines (lines that can run) | 2 |
| Code lines that did run | 2 |
| Code lines that did not run | 0 |
| Coverage (did run/can run) | 100.00 % |
time | Calls | line | |
|---|---|---|---|
1 | function net = Jacobian(data, param, model, net) | ||
2 | |||
3 | % net.Z | ||
20.026 | 5 | 4 | net = feedforward(data, model, net); |
5 | |||
6 | % net.dzdS | ||
199.858 | 5 | 7 | net = cal_dzdS(model, net, size(data, 2)); |
Other subfunctions in this file are not included in this listing.