Info
Questa domanda è chiusa. Riaprila per modificarla o per rispondere.
Custom fitting power1 equation of the type Y=A*(sind(x))^N
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
I have power equation of the type
this resembles to the power1 fit in a custom fitting equation which is of the type ![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/196639/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/196638/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/196639/image.png)
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 Commento
Rik
il 25 Nov 2018
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.
Risposte (0)
Questa domanda è chiusa.
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!