Info
此问题已关闭。 请重新打开它进行编辑或回答。
I have an equation that is the model equation for the experimental data that I have. I am unsure of how to plot this .
1 次查看(过去 30 天)
显示 更早的评论
I want to be able to see if our experimental data fits the model. I have the model equation but I am unsure of how to plot it. Do I use arbitrary numbers? The equation is Z = 250R^1.2, where Z is the x-axis and R is the y-axis (but in log scale). Any help would be appreciated. Z actually ends up becoming dBZ = 10*log10(Z).
0 个评论
回答(3 个)
Babak
2013-2-19
you can do somehthing like this:
zmin = 1;
zmax = 10;
Rmin = (zmin/250)^(1/1.2);
Rmax = (zmax/250)^(1/1.2);
N = 1000; % number of points
z = linspace(zmin,zmax,N);
R = (z/250).^(1/1.2);
semilogy(z,R);
Pay attention that I have parametrized the minimum and maximum values of z. I have also used the inverse of the equation you had provided Z = 250R^1.2 because as you are saying R is the vertical axis and z is in horizontal axis so R should be found as a function of z, as, R = (z/250).^(1/1.2)
0 个评论
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!