Want to create a 3d graph of chi^2 for a 2d data set /w 3 parameters

조회 수: 5 (최근 30일)
Jake
Jake 2012년 6월 26일
Hi, Ive recently been modifying a short simulated annealing algorithm that fits decay curves. I'm currently trying to minimize a weighted r sqrd function and I would like to see what a surface mesh graph of the solution space is. I have 2 parameters (Ae^kt) and two data sets (Time, signal (1001 data points) and I keep on running into a 'matrix has to been same size to use .*' The code im trying to use is:
[X,Y] = meshgrid(80:1:120, -.1:.005:0); Z = (1/1001)*sum((X.*exp(Y.*Time)-signal).^2)./sqrt(signal); surf(X,Y,Z)
Where X,Y are A,k. Z should be single valued, how can i formulate this so matlab treats A,k as free variables and plots Z in the 3rd dimension?

답변 (1개)

Stephen
Stephen 2012년 6월 26일
it looks like X and Y are not a single value, but the result of meshgrid, and when you perform the .* operations with the 1001 element vectors you see and error because the dimensions mismatch. Try using 1 time and signal point, or make a meshgrid with signal and time and use 1 A,k pair.

카테고리

Help CenterFile Exchange에서 Probability Distributions and Hypothesis Tests에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by