function [y1,y2] = matrix_mut(x1,x2,n)
时间: 2024-05-20 10:19:36 浏览: 123
AME_ATL_MUT_Testing
As an AI language model, I do not have access to the context of this function. However, I can provide a general syntax for matrix multiplication using the function:
function [y1,y2] = matrix_mut(x1,x2,n)
y1 = x1 * x2;
y2 = x2 * x1;
end
Here, the function takes two matrices x1 and x2 as inputs and calculates their product, which is stored in y1. It also calculates the product of x2 and x1, which is stored in y2. The variable n is not used in this function.
阅读全文