(x)
| 66 | u3 = Function(Q) |
| 67 | |
| 68 | def e2(x): |
| 69 | values = np.empty((3, x.shape[1])) |
| 70 | values[0] = x[0] + x[1] + x[2] |
| 71 | values[1] = x[0] - x[1] - x[2] |
| 72 | values[2] = x[0] + x[1] + x[2] |
| 73 | return values |
| 74 | |
| 75 | def e3(x): |
| 76 | values = np.empty((9, x.shape[1])) |
nothing calls this directly
no outgoing calls
no test coverage detected