MATLAB用于循环绘图,具有不同的参数

时间:2013-08-22 21:08:11

标签: matlab

我想绘制这个

f(x)=3*(1-x)+7*x+8.314*T((1-x)*(lnx)+x*(lnx))+20*x(1-x)

T0变为2000,间隔为100 {共有20个图表全部在同一个}

提供一个涉及for循环和绘图功能的非常基本的代码。 PS:我是MATLAB

的初学者

2 个答案:

答案 0 :(得分:1)

欢迎使用Matlab。 :)这是我们如何在没有循环的情况下做到这一点:

% Define your function in terms of x and T
% Note that we use .* instead of * - this does a pairwise multiply
%  instead of a matrix or vector multiply
f = @(x,T) 3*(1-x)+7*x+8.314*T.*((1-x).*log(x)+x.*log(x))+20*x.*(1-x);

% Set your domain
x = linspace(0, 10, 101);
T = (0:100:2000);

% Compute your function for all values of x and T
tmp = bsxfun(f, x, T');

% Plot your output, all at the same time
plot(x, tmp)

答案 1 :(得分:0)

f=@(x,T) 3*(1-x)+7*x+8.314*T*((1-x).*log(x)+x.*log(x))+20*x.*(1-x);
T=0:100:2000;
x=linspace(0,10,100);
for i=1:length(T)
    plot(x,f(x,T(i)));
    hold on;
end