contour plot issue
Show older comments
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?
Accepted Answer
More Answers (0)
Categories
Find more on Contour Plots in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!