필터 지우기
필터 지우기

function of the following

조회 수: 1 (최근 30일)
ivko ivkovic
ivko ivkovic 2022년 2월 20일
편집: ivko ivkovic 2022년 3월 1일
function:
time constants :

채택된 답변

Image Analyst
Image Analyst 2022년 2월 20일
Try this:
tau = [1, 0.5, 0.1];
for k = 1 : length(tau)
t = linspace(0, 5 * tau(k), 1000);
f = exp(-t / tau(k));
subplot(3, 1, k);
plot(t, f, 'b-', 'LineWidth', 2);
caption = sprintf('Tau = %.1f', tau(k));
title(caption);
grid on;
xlabel('t');
ylabel('f');
end
  댓글 수: 2
ivko ivkovic
ivko ivkovic 2022년 2월 20일
thanks is it possible to edit the script so all plots should appear in the same window and be of different styles?
thanks a lot
Image Analyst
Image Analyst 2022년 2월 20일
tau = [1, 0.5, 0.1];
for k = 1 : length(tau)
t = linspace(0, 5 * tau(k), 1000);
f = exp(-t / tau(k));
plot(t, f, '-', 'LineWidth', 4);
hold on;
caption = sprintf('f vs t');
title(caption, 'FontSize', 20);
grid on;
xlabel('t', 'FontSize', 20);
ylabel('f', 'FontSize', 20);
end

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

제품


릴리스

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by