How can i plot to get this figure. This is the page number 92 of POTENTIAL FLOWS OF VISCOUS AND VISCOELASTIC FLUIDS, Daniel Joseph, somebody help me please!
Info
Cette question est clôturée. Rouvrir pour modifier ou répondre.
The force on a cylinder near a wall in viscous potential flows
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/361198/image.jpeg)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/361201/image.jpeg)
5 commentaires
John D'Errico
le 17 Sep 2020
So then you need to learn MATLAB. Do the free MATLAB OnRamp course. Read the help docs for functions like plot. Look at the examples in the documentation. Try things out. If you don't know how to plot something, then try to plot something simple. TRY IT.
You won't learn unless you make an effort to learn, and there is much available online already to teach you how to plot a simple function of one variable. That is all this is: a simple function of one variable, thus (b/a).
Réponses (1)
Alan Stevens
le 16 Sep 2020
Here is Cx for you:
>> bovera = 1.001:0.2:10;
>> Cx = 1./(sqrt(bovera.^2-1)*2*pi);
>> plot(bovera,Cx,'o'),grid
(Note that Cx is infinite at x = 1).
I'll leave you to try Cy.
13 commentaires
Alan Stevens
le 29 Sep 2020
@David. Apologies for misspelling your name - I'll try to be more careful in future!
Cette question est clôturée.
Voir également
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!