Changes between Initial Version and Version 1 of Ticket #2538, comment 23
- Timestamp:
- 2020-02-11T21:16:40Z (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #2538, comment 23
initial v1 36 36 }}} 37 37 38 Is that what you would expect? 38 Is that what you would expect? 39 40 EDIT: Scrap that! I forgot the actual partial derivative of the input: 41 {{{ 42 function dfdx 43 input Real x; 44 input Real y; 45 output Real z; 46 algorithm 47 z := 0; 48 z := z + y + x * der(y,x); 49 end dfdx; 50 }}} 51 52 I guess i have to put some thought into this... what do you expect happening here? :D 53