To plot a sketch

20 vues (au cours des 30 derniers jours)
Pouyan Msgn
Pouyan Msgn le 1 Juil 2019
Commenté : Stephen23 le 1 Juil 2019
Hi!
I have a function here :
this is when 0<= x<=a
when a<= x<=b
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 commentaire
Stephen23
Stephen23 le 1 Juil 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.

Connectez-vous pour commenter.

Réponse acceptée

Julie
Julie le 1 Juil 2019
Modifié(e) : Julie le 1 Juil 2019
No, you cannot do this without giving numerical values to a and b.

Plus de réponses (0)

Catégories

En savoir plus sur Surfaces, Volumes, and Polygons dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by