필터 지우기
필터 지우기

Create a Matrix from defined variables

조회 수: 3 (최근 30일)
wissal zaher
wissal zaher 2022년 1월 22일
댓글: wissal zaher 2022년 1월 22일
Hey guys, I'm trying to create a matrix with combined math operations from already defined variables in the workspace but I always get an error. I would really appreciate some help :)
Variables :
c1=440
c2=250
r1= 50
r2=25
Matrix :
C=[c1*r1^2, c1*r1*r2, 0;
c1*r2*r1, c2+c1*c2^2, -c2;
0, -c2, c2]
  댓글 수: 2
Torsten
Torsten 2022년 1월 22일
For me, it works fine.
What error message do you get ?
wissal zaher
wissal zaher 2022년 1월 22일
That in order to define a function I have to use brackets but now it worked somehow.. I don't know why it was bugging

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

채택된 답변

KSSV
KSSV 2022년 1월 22일
c1=440 ;
c2=250 ;
r1= 50 ;
r2=25 ;
C=[c1*r1^2, c1*r1*r2, 0;
c1*r2*r1, c2+c1*c2^2, -c2;
0, -c2, c2]
C = 3×3
1100000 550000 0 550000 27500250 -250 0 -250 250
  댓글 수: 1
wissal zaher
wissal zaher 2022년 1월 22일
now it worked ! I don't know why I was getting an error earlier. Thanks :)

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

추가 답변 (1개)

Louis Alexander
Louis Alexander 2022년 1월 22일
this code is right.
c1=440
c1 = 440
c2=250
c2 = 250
r1= 50
r1 = 50
r2=25
r2 = 25
C=[c1*r1^2, c1*r1*r2, 0;
c1*r2*r1, c2+c1*c2^2, -c2;
0, -c2, c2]
C = 3×3
1100000 550000 0 550000 27500250 -250 0 -250 250
there could other reasons for the error.
  댓글 수: 1
wissal zaher
wissal zaher 2022년 1월 22일
The error seems to be sorted out :) thanks

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

카테고리

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

제품


릴리스

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by