필터 지우기
필터 지우기

Matrix to Scalar Problem

조회 수: 2 (최근 30일)
Nahuel
Nahuel 2023년 9월 6일
댓글: MarKf 2023년 9월 6일
Hi everyone,
I have a problem in the line 10, that it is ofcourse cause of the multiplication between a Matrix and a Scalar. But I do not find how to solve it.
  1. t=0:3:60;%seconds
  2. Pos0=0;%position
  3. Vel0=0;%velocity
  4. W=6.28;%frecuency
  5. e=2.71828;%Euler
  6. Damp_Coef=0;
  7. Wd=W*(1-Damp_Coef^2)^0.5;
  8. alfa=atan((Vel0+Pos0*Damp_Coef*W)/(Wd*Pos0));
  9. C=(Pos0^2+((Vel0+Pos0*Damp_Coef*W)^2)/Wd^0.5)^(0.5);
  10. x=C*e^(-Damp_Coef*W*t)*cos(Wd*t-alfa);
  11. figure
  12. plot(t,x)
  13. xlabel('time,s')
  14. ylabel('x(t)')
  15. legend('NANU')
  16. title('lets see')
  댓글 수: 2
John D'Errico
John D'Errico 2023년 9월 6일
편집: John D'Errico 2023년 9월 6일
Please don't number those lines. That makes it impossible to copy your code. Why do you want to make it more difficult to get help? Just making the line in question bold faced as you did was certainly sufficient.
MarKf
MarKf 2023년 9월 6일
fortuantely it is just a numbered list, so it is easy to copy actually... but yes interesting appoach, bold/underlined or even code %<-- issue here would have worked

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

답변 (3개)

Les Beckham
Les Beckham 2023년 9월 6일
t=0:3:60;%seconds
Pos0=1;%position <<< Pos0 can't be zero since you divide by Wd*Pos0 when calculating alfa
Vel0=0;%velocity
W=6.28;%frecuency
e=2.71828;%Euler
Damp_Coef=0.02; % <<< Damp_Coef can't be zero
Wd=W*(1-Damp_Coef^2)^0.5;
alfa=atan((Vel0+Pos0*Damp_Coef*W)/(Wd*Pos0));
C=(Pos0^2+((Vel0+Pos0*Damp_Coef*W)^2)/Wd^0.5)^(0.5);
x=C*exp(-Damp_Coef*W.*t).*cos(Wd.*t-alfa);
% ^ use exp instead of e^ and use element-wise multiplies: .* instead of *
figure
plot(t,x)
grid on
xlabel('time,s')
ylabel('x(t)')
legend('NANU')
title('lets see')

Torsten
Torsten 2023년 9월 6일
x=C*exp(-Damp_Coef*W*t).*cos(Wd*t-alfa);

MarKf
MarKf 2023년 9월 6일
Use a dot "." before an element-wise operation, that is also to multiply, divide, raise etc a scalar value to each of the element of a vector/matrix. Example below, tho not sure that's what you meant to do.
t=0:3:60;%seconds
Pos0=0;%position
Vel0=0;%velocity
W=6.28;%frecuency
e=2.71828;%Euler
Damp_Coef=0;
Wd=W*(1-Damp_Coef^2)^0.5;
alfa=atan((Vel0+Pos0*Damp_Coef*W)/(Wd*Pos0));
C=(Pos0^2+((Vel0+Pos0*Damp_Coef*W)^2)/Wd^0.5)^(0.5);
x=C*e.^(-Damp_Coef*W*t).*cos(Wd*t-alfa);
figure
plot(t,x)
xlabel('time,s')
ylabel('x(t)')
legend('NANU')
title('lets see')

카테고리

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

태그

제품


릴리스

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by