contour plot issue
이전 댓글 표시
Hello,
I am sorry to pester you all again but I can't get my code to work. Here is what I have so far:-
clear all % clears all previous data
s = load('domain\data.txt');
% loads in data file
% s(:,1) data number
% s(:,2) x variables
% s(:,3) y variables
x = s(:,2);
y = s(:,3);
a = 9.5:1/100:10.49;
b = 4.5:1/100:5.49;
chi2 = [ ];
c = 0;
for n = 1:100;
for m = 1:100;
a_pred = a(:,n);
b_pred = b(:,m);
c = c+1;
y_pred = a_pred + b_pred.* x;
chi2(c,:) = sum((y-y_pred).^2);
end
end
deltachi = chi2 - min(chi2);
contour(a,b,deltachi);
about the data of s
size(x)
ans =
1000 1
and
size(y)
ans =
1000 1
At the moment I cannot complete a successful contour plot as both chi2 and deltachi are just strings and not arrays. Can anyone see where I am going wrong please?
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Contour Plots에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!