R2025b Update 4 does not support element-wise division (./) for tf objects?
The following should divide 1/(s+1) by 2, and 1/(s+2) by 3:
s = tf(‘s’);
sys1 = [1/(s+1), 1/(s+2)];
sys2 = [2, 3];
result = sys1 ./ sys2;
However, I get the following error message:
Error using ./
Invalid data type. Argument must be numeric, char, or logical.
Error in
test (line 4)
result = sys1 ./ sys2;The following should divide 1/(s+1) by 2, and 1/(s+2) by 3:
s = tf(‘s’);
sys1 = [1/(s+1), 1/(s+2)];
sys2 = [2, 3];
result = sys1 ./ sys2;
However, I get the following error message:
Error using ./
Invalid data type. Argument must be numeric, char, or logical.
Error in
test (line 4)
result = sys1 ./ sys2; The following should divide 1/(s+1) by 2, and 1/(s+2) by 3:
s = tf(‘s’);
sys1 = [1/(s+1), 1/(s+2)];
sys2 = [2, 3];
result = sys1 ./ sys2;
However, I get the following error message:
Error using ./
Invalid data type. Argument must be numeric, char, or logical.
Error in
test (line 4)
result = sys1 ./ sys2; control toolbox, element-wise division, transfer-function object MATLAB Answers — New Questions









