Can someone please help me with this matrix question that I cant answer?

조회 수: 2 (최근 30일)
I don't know how to enter the code for this question in MATLAB, can someone please give me some guidance on how to answer it? Image has been attached
this is what I have so far: a=[1 3; 2 -4; -2 6], b=[0 1; -1 3; 2 6], c=[1 4; 5 6], d=[2 -3 0; 5 6 -4]
  댓글 수: 1
the cyclist
the cyclist 2021년 3월 20일
This is a pretty basic question. My recommendation would be to watch this MATLAB Onramp tutorial, to learn the fundamentals.

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

채택된 답변

Shubham Rawat
Shubham Rawat 2021년 3월 22일
Hi John,
You can do like this, but first I will suggest you to watch basic MATLAB from here MATLAB Onramp - MATLAB & Simulink Tutorial (mathworks.com).
a=[1 3; 2 -4; -2 6];
b=[0 1; -1 3; 2 6];
c=[1 4; 5 6];
d=[2 -3 0; 5 6 -4];
%here .^ is for elemetary square of a matrix
matrix = a - 2*b*(c.^2) + 3*d';
Hope this helps!

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기

제품


릴리스

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by