File: mtx_dotpow.md

package info (click to toggle)
pd-iemmatrix 0.6.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,576 kB
  • sloc: ansic: 15,440; makefile: 291; sh: 169
file content (34 lines) | stat: -rw-r--r-- 632 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
---
title: mtx_.^
description: calculate element-wise raising to the power of x
categories:
- object
pdcategory: Element Math
aliases:
- mtx_pow
see_also:
- matrix
- mtx_+
- mtx_-
- mtx_.*
- mtx_./
- mtx_*
inlets:
  1st:
  - type: matrix
    description: left-hand operand
  2nd:
  - type: matrix
    description: right-hand operand
  - type: float
    description: right-hand operand
outlets:
  1st:
  - type: matrix
    description: result
---


$$C_{m\times n} = A_{m\times n}^{\circ B_{m\times n}} \quad \equiv \quad c_{ij} = a_{ij}^{b_{ij}} $$

$$C_{m\times n} = A_{m\times n}^{\circ b} \quad \equiv \quad c_{ij} = a_{ij}^b $$