필터 지우기
필터 지우기

digital signal processing linear sistem

조회 수: 1 (최근 30일)
R.edi Prasetyo
R.edi Prasetyo 2022년 11월 3일
답변: Ravi 2023년 2월 16일
%menentukan sistem linear atau nonlinear
x = randi(1,200,[0,100]);
%hitung sinyal
x1 = [x 0 0]; %x1[n] = x[n+1]
x2 = [0 x 0]; %x1[n] = x[n]
x3 = [0 0 x]; %x1[n] = x[n-1]
y1 = x1 + 2*x2 - 3*x3;
y2 = 5*x1 + 2*(5*x2) - 3*(5*x3);
y3 = 5*y1;
%tentukan jumlah bilangan yang salah
jumlah_salah = symerr(y2,y3)
  댓글 수: 2
Image Analyst
Image Analyst 2022년 11월 3일
I have no idea what to do with your post. If you have any questions, then ask them after you read this:
Meet
Meet 2023년 2월 8일
Hi,
Based on your post, it is unclear what you are trying to achieve and what difficulties you are facing. Please provide a more detailed description of the issue in order to get help from the community.

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

답변 (1개)

Ravi
Ravi 2023년 2월 16일
Hello R.edi
If I understand you correctly you are trying to solve a system of linear equations., where x1,x2,x3 are three variables and y1,y2,y3 are three outputs of linear equations.
Below is the documentation link to solve a system of linear equations using linsolve. I hope this resolves your issue.
Regards

카테고리

Help CenterFile Exchange에서 Language Fundamentals에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by