How to redefine the exponential function ^ In MATLAB?
x.^y
to
sign(x).*abs(x.^y))
|
How to redefine the exponential function
to
| |||||
feedback
|
Why? Because every other function in MATLAB expects that the arithmetic operator will behave as defined by the built-in implementation. I've answered a few other related questions that have dealt with overloading arithmetic operators and shadowing built-in behavior, which I definitely suggest reading through first to understand the details, difficulties, and pitfalls involved in such an approach:
And now that I'm done with my disclaimer, I'll hand you the gun with which to potentially shoot yourself in the foot... ;) Arithmetic operators in MATLAB have functional equivalents that are called behind the scenes when you invoke them, which are listed here. The arraywise power operator Now, there will be a separate POWER function defined for each data type that uses it. This function will be placed in an
If your variables
Now, if you add the directory | |||
|
feedback
|
|
Don't. It won't be correct. (-1).^(1/2) should always give you the imaginary unit (i). The expression you have would give you (-1).^(1/2) -> -1. Even worse, consider (-1)^2. Create a separate function to perform the operation you're describing. Something like
| ||||
|
feedback
|