Member of the linalgebra class.
c = funm(fnct, a)
Computes functions of square matrices. You must specify the function in a string that represents a valid function of one variable. If a has multiple eigenvalues, LabVIEW does not return valid results.
| Name | Description |
| fnct | Specifies a string that represents a valid function of one variable. |
| a | Specifies a real or complex square matrix. |
| Name | Description |
| c | Returns a real or complex square matrix of the same size as a. |
sin(x) + cos(x) and sqrt(cosh(y)) are valid functions of one variable, but sin(x) + cos(y) is not.
This function is not supported in the LabVIEW Run-Time Engine. Do not use this function in a stand-alone application or shared library.
A = rand(100);
C = funm(A, 'cos(sin(z))');