To plot a sketch
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hi!
I have a function here :
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/227029/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/227030/image.png)
I have to to sketch this.... Can I do this without giving any numerical value to the parameters a and b? I'll plot it as a function of x
Here is my attempt sorry if it's childish, I'm not professional
clear all
clc
syms a b x
Psi1= sqrt(3/b)*x/a;
Psi2=sqrt(3/b)* (b-x)/(b-a);
plot(x,Psi1)
hold on
plot(x,Psi2)
1 Commento
Stephen23
il 1 Lug 2019
"Can I do this without giving any numerical value to the parameters a and b?"
Of course: write a function and then call fplot.
Risposta accettata
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Assumptions in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!