Changes between Initial Version and Version 1 of Ticket #2538, comment 23


Ignore:
Timestamp:
2020-02-11T21:16:40Z (5 years ago)
Author:
Karim Adbdelhak

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #2538, comment 23

    initial v1  
    3636}}}
    3737
    38 Is that what you would expect?
     38Is that what you would expect?
     39
     40EDIT: 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
     52I guess i have to put some thought into this... what do you expect happening here? :D
     53