Plotting an Unknown Variable Exponent?
조회 수: 1 (최근 30일)
이전 댓글 표시
Hello, I am trying to figure out how to solve for an unknown variable exponent via graphing. Using the equation:
F = P^-m
I am trying to solve for the value of m given a set of F and P values. I am very new to Matlab and really have no idea how to solve this problem. I know how to set up the column vectors with the data I have, mainly F and P, but do not know how to graph this equation and solve for m. Any input would be appreciated. Thank you.
Ashley
댓글 수: 0
답변 (2개)
the cyclist
2013년 9월 7일
I assume this is homework.
Here's a hint: Think about taking the logarithm of each side of this equation, and think about plotting the result.
Image Analyst
2013년 9월 7일
Try this little demo and see where the curves (formed using different m values) cross the flat line which is a constant F value:
P = 0 : 0.01 : .4;
F = 900 * ones(1, length(P));
plot(P, F);
hold on;
% Enlarge figure to full screen.
set(gcf, 'units','normalized','outerposition',[0 0 1 1]);
% Plot for various values of m.
for m = 1:.5:2
y = P .^ (-m);
plot(P, y, 'b+-');
end
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/172177/image.png)
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!