필터 지우기
필터 지우기

how can write this math

조회 수: 1 (최근 30일)
ali
ali 2011년 11월 22일
1.how can write this 1/((s+1)^8)(s+2)^5 in matlab?
2.how can write Tangent line this 1/((s+1)^8)? please help me
  댓글 수: 1
Chandra Kurniawan
Chandra Kurniawan 2011년 11월 22일
Your 'tangent' argument in radians or degrees?
You can use tand if it's expressed in degrees.

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

답변 (1개)

Walter Roberson
Walter Roberson 2011년 11월 22일
My guess would be
fs = @(s) 1 / ((s + 1).^ 8 .* (s + 2).^5);
tans = @(s) tan(1/((s+1).^8);

카테고리

Help CenterFile Exchange에서 Electrical Block Libraries에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by