Skip to content

GitLab

  • Menu
Projects Groups Snippets
    • Loading...
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in
  • wderiv wderiv
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 1
    • Issues 1
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 0
    • Merge requests 0
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Monitor
    • Monitor
    • Incidents
  • Packages & Registries
    • Packages & Registries
    • Package Registry
    • Container Registry
    • Infrastructure Registry
  • Analytics
    • Analytics
    • CI/CD
    • Repository
    • Value stream
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • wtools
  • wderivwderiv
  • Wiki
  • Home

Home · Changes

Page history
Update home authored May 22, 2021 by Bartosz Ruszczak's avatar Bartosz Ruszczak
Hide whitespace changes
Inline Side-by-side
home.md
View page @ f429d0f7
......@@ -98,6 +98,37 @@ Function computes second derivative with respect to $`z`$ of 3D real function $`
* `return` - error code
`d2fdz2` can be the same pointer as `f`, then result overwrites input.
### n-th 3D derivative functions:
```c
int wderiv_dnfdxn_3d_r(int n, double *f, double *dnfdxn)
```
Function computes n-th derivative with respect to $`x`$ of 3D real function $`f(x,y,z)`$: $`(\frac{d^nf}{dx^n})`$.
* `f` - pointer to input function which is array of size [nx*ny*nz]
* `dnfdxn` - pointer to output derivative function which is array of size [nx*ny*nz]
* `return` - error code
`dnfdxn` can be the same pointer as `f`, then result overwrites input.
```c
int wderiv_dnfdyn_3d_r(int n, double *f, double *dnfdyn)
```
Function computes n-th derivative with respect to $`y`$ of 3D real function $`f(x,y,z)`$: $`(\frac{d^nf}{dy^n})`$.
* `f` - pointer to input function which is array of size [nx*ny*nz]
* `dnfdyn` - pointer to output derivative function which is array of size [nx*ny*nz]
* `return` - error code
`dnfdyn` can be the same pointer as `f`, then result overwrites input.
```c
int wderiv_dnfdzn_3d_r(int n, double *f, double *dnfdzn)
```
Function computes n-th derivative with respect to $`z`$ of 3D real function $`f(x,y,z)`$: $`(\frac{d^nf}{dz^n})`$.
* `f` - pointer to input function which is array of size [nx*ny*nz]
* `dnfdzn` - pointer to output derivative function which is array of size [nx*ny*nz]
* `return` - error code
`dnfdzn` can be the same pointer as `f`, then result overwrites input.
/**
* Function computes gradient
......
Clone repository
  • Complex derivatives
  • Gradient square
  • Initialization
  • Real derivatives
  • Home