I am wondering how do I fit three points x = ([0.42 0.64 0.96]) and
y = ([4.2 5.1 6.0]) with y = k*x^(0.88)?
I tried [p,S,mu] = polyfit(x,y,0.88); but MATLAB says only power in integer numbers are accepted. Thanks.
EDIT:
The idea is I know these three points should follow the curve based on some theory, so I want to plot it to convince myself. Also, I'd like to do curve fitting because I don't know what k is.