Member of the basic class.
c = humps(a)
Generates a curve with the maxima at 0.3 and 0.9. LabVIEW uses the following equation to compute the curve: humps(a) = ((x - 0.3)^2 + 0.01)^(-1) + ((x - 0.9)^2 + 0.04)^(-1) - 6
| Name | Description |
| a | Specifies a real or complex matrix. |
| Name | Description |
| c | Returns the curve with the maxima at 0.3 and 0.9. |
Z = [-1:0.01:3];
C = humps(Z);
plot(Z, C)