필터 지우기
필터 지우기

How do I write the following functions on Matlab x(t) = 2tcos(pi*t) , y(t) = 2sin(pi*t)

조회 수: 2 (최근 30일)
I keep getting error using * and other errors
  댓글 수: 1
Steven Lord
Steven Lord 2024년 3월 2일
These functions didn't exist when the question was originally asked (they were introduced in release R2018b) but the sinpi and cospi functions may be of use.

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

채택된 답변

KSSV
KSSV 2016년 9월 21일
t = 0:0.1:60 ;
x = 2*t.*cos(pi*t) ;
y = 2*sin(pi*t) ;
  댓글 수: 2
Khalid Tewfik
Khalid Tewfik 2016년 9월 21일
this is what I have t = 0:.1:2; x1 = 2*t.*cos(pi*t); y1 = 2*sin(pi*t); plot(x1,y1) but i'm still getting the error message Error using * Inner matrix dimensions must agree.
Error in plotting (line 8) x1 = 2*t*cos(pi*t);
KSSV
KSSV 2016년 9월 21일
It should work.....you clear space and try..

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

추가 답변 (2개)

Adam
Adam 2016년 9월 21일
t = linspace( 0, 2*pi, 100 );
x = 2 * t .* cos( pi * t );
y = 2 * sin( pi * t );
  댓글 수: 2
Khalid Tewfik
Khalid Tewfik 2016년 9월 21일
this is what I have t = 0:.1:2; x1 = 2*t.*cos(pi*t); y1 = 2*sin(pi*t); plot(x1,y1) but i'm still getting the error message Error using * Inner matrix dimensions must agree.
Error in plotting (line 8) x1 = 2*t*cos(pi*t);
John D'Errico
John D'Errico 2024년 3월 3일
@Khalid Tewfik - too late for this response for you, but you need to see that you used the expression:
2*t*cos(pi*t)
Do you see you used the * operator, instead of the .* operator? The difference if important in MATLAB.

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


MD.AL-AMIN
MD.AL-AMIN 2024년 3월 2일
편집: Walter Roberson 2024년 3월 3일
% Define the signal function
X = @(t) 5 * sin(2*pi*t) .* cos(pi*t - 8);
% Define the range of t
t = linspace(0, 20, 1000); % Adjust the number of points for desired resolution
% Plot the signal
figure;
plot(t, X(t));
% Label axes and title
xlabel('t');
ylabel('X(t)');
title('Signal X(t)');
% Adjust axis limits and grid (optional)
xlim([0, 20]); % Set appropriate x-axis limits
ylim([-5, 5]); % Set appropriate y-axis limits
grid on;

카테고리

Help CenterFile Exchange에서 Descriptive Statistics에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by