Owning Class: basic
Requires: MathScript RT Module
c = peakfcn1d(a)
Legacy Name: humps
Generates a curve with maxima near 0.3 and 0.9. LabVIEW uses the following equation to compute the curve: peakfcn1d(x) = exp(-(x - 0.3).^2 / 0.1) + exp(-(x - 0.9).^2 / 0.03).
| Name | Description |
|---|---|
| a | Specifies a real or complex matrix. |
| Name | Description |
|---|---|
| c | Returns the curve with maxima near 0.3 and 0.9. |
Z = [-1:0.01:3];
C = peakfcn1d(Z);
plot(Z, C)