Termwise divide ordinates (f1.\f2).
f1.\f2
f.\x
x.\f
The following termwise multiplication operations are possible with imat_fn objects:
A termwise left division operation in MATLAB is the same as a right division with the operands switched.
>> f=imat_fn(3,'ordinate',reshape(1:15,5,3))
f =
3x1 IMAT Function with the following attributes:
Record Name FunctionType AbscissaSpacing NumberElements
-------------------- ---------------- ---------------- ----------------
1_(1X+,1X+) Time Response Even 5
2_(1X+,1X+) Time Response Even 5
3_(1X+,1X+) Time Response Even 5
>> f.ordinate
ans =
1 6 11
2 7 12
3 8 13
4 9 14
5 10 15
>> g=f+1; g.ordinate
ans =
2 7 12
3 8 13
4 9 14
5 10 15
6 11 16
>> h=g.\f; h.ordinate
ans =
0.5000 0.8571 0.9167
0.6667 0.8750 0.9231
0.7500 0.8889 0.9286
0.8000 0.9000 0.9333
0.8333 0.9091 0.9375
>>