Plotting a Parametric Equation

1 Ansicht (letzte 30 Tage)
Maggie Mhanna
Maggie Mhanna am 22 Mai 2015
Kommentiert: Walter Roberson am 22 Mai 2015
Suppose that I need to plot B vs A.
A(T) = int (f(x),x,L1(x)>T),
B(T) = int (g(x),x,L2(x)<T),
How can I do it using matlab

Antworten (1)

Walter Roberson
Walter Roberson am 22 Mai 2015
L2(x)<T might be true for a whole series of non-contiguous x, so the meaning of your integration limits are not clear. Is the meaning that the integral is to be considered the sum of the integrals over each subregion (a, b) where a and b are successive zeros of L2(x)-T?
  1 Kommentar
Walter Roberson
Walter Roberson am 22 Mai 2015
Suppose you have a function F(T) that returns whatever you mean by int(f(x), x, L1(x)>T) for that one given T. Likewise suppose G(T) that returns the relevant value for your second integral. Then
t=linspace(-20,15,50); %choose boundaries and number of points
A = arrayfun(@F, t) ;
B = arrayfun(@G, t) ;
plot(A, B)

Melden Sie sich an, um zu kommentieren.

Community Treasure Hunt

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

Start Hunting!

Translated by