Printing a calculated function.

5 次查看(过去 30 天)
Areeb Zahid
Areeb Zahid 2023-10-14
Hi, I'm calculating some convolutions and I need to see what function 'z' is, disp(z) only displays the array of values z has, how can I make it print the function it represents?
syms t
t = linspace(-10, 10, 1000)
t1 = linspace(-10, 10, 2000)
x = cos(8*pi*t)
subplot(3, 1, 2)
plot(t, x)
title('x(t)')
y = rectangularPulse(-2.5, 2.5, t)
subplot(3, 1, 1)
plot(t, y)
title('h(t)')
z = conv(x, y, 'same')
subplot(3, 1, 3)
plot(t, z)
title('y(t)')
disp(z) % How do I display the function this represents?

回答(2 个)

Walter Roberson
Walter Roberson 2023-10-14
syms t T
x(t) = cos(8*pi*t)
x(t) = 
y(t) = rectangularPulse(-2.5, 2.5, t)
y(t) = 
z(t) = int(x(t)*y(T-t), T, -inf, inf) %continuous convolution
z(t) = 

John D'Errico
John D'Errico 2023-10-14
编辑:John D'Errico 2023-10-14
You CANNOT. At least, given only the vector of values, there are infinitely many possible functions that may have generated them. MATLAB cannot possible know which one caused thatvector of numbers to arise.
Can you compute a convolution using symbolic tools? Well, yes. Sort of. Given function inputs, then the convolution is just an integral. If the integral has an analytical solution, and the symbolic tool int can solve it, then yes. Conv does not accept symbolic input as I recall though.

类别

Help CenterFile Exchange 中查找有关 Calculus 的更多信息

产品


版本

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by