Power u^:v  _ _ _  

case of ^: with 動詞右引數is defined in terms of 名詞右引數 case(u ^: n)as follows:                    
    x u ^: v y  «  x u^:(x v y) y
    u ^: v y    «  u^:(v y) y

例如:
   x=: 1 3 3 1
   y=: 0 1 2 3 4 5 6
   x p. y
1 8 27 64 125 216 343

   x p. ^: (]>3:)"1 0 y
0 1 2 3 125 216 343

   a=: _3 _2 _1 0 1 2 3
   %: a
0j1.73205 0j1.41421 0j1 0 1 1.41421 1.73205

   * a
_1 _1 _1 0 1 1 1

   %: ^: * " 0 a
9 4 1 0 1 1.41421 1.73205

   *: a
9 4 1 0 1 4 9
following 單邊 are equivalent. (See example of ^ T. _ 在定義of Taylor Approximation T. .)
   g=: u ^: p ^: _
   h=: 3 : 't=. y. while. p t do. t=. u t end.'

   u=: -&3 [. p=: 0&<
   (g"0 ; h"0) i. 10
+-------------------------+-------------------------+
|0 _2 _1 0 _2 _1 0 _2 _1 0|0 _2 _1 0 _2 _1 0 _2 _1 0|
+-------------------------+-------------------------+

下個前個字彙索引主選單