Regression plot help for a range of data

5 次查看(过去 30 天)
Hello, I am currently tasked with creating a regression plot in matlab using for loops, but I have never done it before and don't know how. I have tried looking it up a number of different ways, but none of these ways seem to be similar to what I have to do.
The equation that I have is k = ((L*u*Q)/(dp*A)), where k is permeability, Q is flux, and dp is the change in pressure. All of the other variables are constant.
How would I go about making a regression plot for k, or permeability, for a range of different flux values and/or pressure values. If I can do them both at the same time that is cool, but if it needs to be done one at a time that would work too. Currently I am trying to do 0.0001-0.001 for flux in steps of 0.0001, and pressure 1 to 1000 newtons in steps of 15 or so. The steps are not that important, but getting started is the most important part. If anyone has any advice/links that they think would help it would be greatly appreciated.
  1 个评论
dpb
dpb 2021-7-4
Another use for meshgrid and surf() it would seem. IA just answered one a little while ago while I just pointed the OP to the documentation :) ...
Just substitute your function and range of independent variables, any away you go...

请先登录,再进行评论。

采纳的回答

Sulaymon Eshkabilov
No need to employ meshgrid() for calculations instead, use color ":" operator that performs vectorized calcs.
L=...;
u=...;
A=...;
Q=0:.0001:.001; % Flux
dp=1:15:1000; % Change in pressure
k = ((L*u*Q)./(dp(:)*A));
surf(k)
  5 个评论
Liam O'Brien
Liam O'Brien 2021-7-5
Okay, thank you, and that would be done the same way? using the surf function? the only tool box I have installed currently is the image processing one, but I am able to install any that I need through my school
dpb
dpb 2021-7-5
All you need/want for a linear plot like the above is plot()
Just set hold on after the first line is drawn to add to it.
Or, create an array of the YData as columns for each of the second variable and pass it; plot treats each column of a 2D array as a separate line automagically.
See the documentation for plot for example usage.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Two y-axis 的更多信息

产品


版本

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by