Info
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
Custom fitting power1 equation of the type Y=A*(sind(x))^N
조회 수: 1 (최근 30일)
이전 댓글 표시
I have power equation of the type this resembles to the power1 fit in a custom fitting equation which is of the type
here my X is sind(X) function. Any help.
myfittype = fittype('(k*sind(x)).^N',... % .^N
'dependent',{'y'},'independent',{'x'},...
'coefficients',{'k','N'}, 'Lower', [0]);
[myfit1, goodness1, output1] = fit(x,y,myfittype);
plot(myfit1,x,y);
This did not work.
ANy help
댓글 수: 1
Rik
2018년 11월 25일
This is still a continuation of your previous question. Please respond there.
Also, this question is missing the essential requirement that N should be a non-zero positive integer.
답변 (0개)
이 질문은 마감되었습니다.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!