我想绘制以下函数
norm(A-x*eye(3),2)
在区间-1< x< 1,其中A是固定的3x3矩阵。有人知道我该怎么做?
答案 0 :(得分:1)
x = linspace(-1, 1, 100); % plot 100 points
y = arrayfun(@(x) norm(A-x*eye(3), 2), x);
plot(x,y);
答案 1 :(得分:0)
fplot(@(x) norm(A-x*eye(3),2),[-1,1])