More laplace inverse problems
이 질문을 팔로우합니다.
- 팔로우하는 게시물 피드에서 업데이트를 확인할 수 있습니다.
- 정보 수신 기본 설정에 따라 이메일을 받을 수 있습니다.
오류 발생
페이지가 변경되었기 때문에 동작을 완료할 수 없습니다. 업데이트된 상태를 보려면 페이지를 다시 불러오십시오.
이전 댓글 표시
0 개 추천
I can not get a distinct answer from the ilaplace function almost ever This is incredibly annoying.
This transfer function is not that complicated
There is no built in ramp function in matlab which means in order to plot it in matlab i need to either take the transfer function in s and multiple it by 1/s^2 ---> take the inverse of it and plot it
or
take the inverse of the transfer function and multiple that by t and plot that
Neither of which matlab can accomplish Not being able to plot a ramp response without simulink is getting extremely old Can someone help me with a solutions
num = [10 10];
dem = [1, 6, 10 ,18, 10];
sys = tf(num,dem)
tf_inverse = ilaplace(tf2sym(sys)) %just ignore the tf2sym functions its %just converting tf type to symbolic
ramp_response = t*(tf_inverse)
ezplot(ramp_response)
I just can not wrap my head around the fact that something as powerful as matlab can not take the inverse of a 4th order laplace
채택된 답변
Walter Roberson
2016년 10월 9일
ezplot(vpa(ramp_response))
We went through this before. The inverse laplace of transfer function with maximum degree N in the denominator generally involves the sum of N roots of the polynomial that is the denominator. By default the symbolic engine leaves the root in symbolic form for degree 4 or higher.
The exact value of tf_inverse is
(1 / 189864) * (( - (30 * 1i) * (((1774 + 54 * 1465^(1 / 2))^(2 / 3) + 7 * (1774 + 54 * 1465^(1 / 2))^(1 / 3) - 104) / (1774 + 54 * 1465^(1 / 2))^(1 / 3))^(1 / 2) + (10386 * 1i) * 3^(1 / 2) + ( - (363 * 1i) * 3^(1 / 2) * (1774 + 54 * 1465^(1 / 2))^(2 / 3) + (37752 * 1i) * 3^(1 / 2)) / (1774 + 54 * 1465^(1 / 2))^(1 / 3)) * (( - 14 * (1774 + 54 * 1465^(1 / 2))^(1 / 3) + (1774 + 54 * 1465^(1 / 2))^(2 / 3) - 104) / (1774 + 54 * 1465^(1 / 2))^(1 / 3) + 90 * 3^(1 / 2) / (((1774 + 54 * 1465^(1 / 2))^(2 / 3) + 7 * (1774 + 54 * 1465^(1 / 2))^(1 / 3) - 104) / (1774 + 54 * 1465^(1 / 2))^(1 / 3))^(1 / 2))^(1 / 2) + (210 * ((1774 + 54 * 1465^(1 / 2))^(1 / 3) - (1 / 14) * (1774 + 54 * 1465^(1 / 2))^(2 / 3) + 52 / 7) / ((1774 + 54 * 1465^(1 / 2))^(1 / 3) * (((1774 + 54 * 1465^(1 / 2))^(2 / 3) + 7 * (1774 + 54 * 1465^(1 / 2))^(1 / 3) - 104) / (1774 + 54 * 1465^(1 / 2))^(1 / 3))^(1 / 2)) + 5082 * 3^(1 / 2) * ( - 2615 / 1694 + ( - (1 / 14) * (1774 + 54 * 1465^(1 / 2))^(2 / 3) + 52 / 7) / (1774 + 54 * 1465^(1 / 2))^(1 / 3))) * (((1774 + 54 * 1465^(1 / 2))^(2 / 3) + 7 * (1774 + 54 * 1465^(1 / 2))^(1 / 3) - 104) / (1774 + 54 * 1465^(1 / 2))^(1 / 3))^(1 / 2) - 1350 * 3^(1 / 2) / (((1774 + 54 * 1465^(1 / 2))^(2 / 3) + 7 * (1774 + 54 * 1465^(1 / 2))^(1 / 3) - 104) / (1774 + 54 * 1465^(1 / 2))^(1 / 3))^(1 / 2) - 210 + (15 * (1774 + 54 * 1465^(1 / 2))^(2 / 3) - 1560) / (1774 + 54 * 1465^(1 / 2))^(1 / 3) + ((121 * 1i) * (((((1774 + 54 * 1465^(1 / 2))^(2 / 3) + 7 * (1774 + 54 * 1465^(1 / 2))^(1 / 3) - 104) / (1774 + 54 * 1465^(1 / 2))^(1 / 3))^(1 / 2) * (1774 + 54 * 1465^(1 / 2))^(2 / 3) + 90 * 3^(1 / 2) * (1774 + 54 * 1465^(1 / 2))^(1 / 3) - 14 * (1774 + 54 * 1465^(1 / 2))^(1 / 3) * (((1774 + 54 * 1465^(1 / 2))^(2 / 3) + 7 * (1774 + 54 * 1465^(1 / 2))^(1 / 3) - 104) / (1774 + 54 * 1465^(1 / 2))^(1 / 3))^(1 / 2) - 104 * (((1774 + 54 * 1465^(1 / 2))^(2 / 3) + 7 * (1774 + 54 * 1465^(1 / 2))^(1 / 3) - 104) / (1774 + 54 * 1465^(1 / 2))^(1 / 3))^(1 / 2)) / ((1774 + 54 * 1465^(1 / 2))^(1 / 3) * (((1774 + 54 * 1465^(1 / 2))^(2 / 3) + 7 * (1774 + 54 * 1465^(1 / 2))^(1 / 3) - 104) / (1774 + 54 * 1465^(1 / 2))^(1 / 3))^(1 / 2)))^(3 / 2) + 121 * (((1774 + 54 * 1465^(1 / 2))^(2 / 3) + 7 * (1774 + 54 * 1465^(1 / 2))^(1 / 3) - 104) / (1774 + 54 * 1465^(1 / 2))^(1 / 3))^(3 / 2)) * 3^(1 / 2)) * exp( - (1 / 6) * (1i * 3^(1 / 2) * (( - 14 * (1774 + 54 * 1465^(1 / 2))^(1 / 3) + (1774 + 54 * 1465^(1 / 2))^(2 / 3) - 104) / (1774 + 54 * 1465^(1 / 2))^(1 / 3) + 90 * 3^(1 / 2) / (((1774 + 54 * 1465^(1 / 2))^(2 / 3) + 7 * (1774 + 54 * 1465^(1 / 2))^(1 / 3) - 104) / (1774 + 54 * 1465^(1 / 2))^(1 / 3))^(1 / 2))^(1 / 2) - 3^(1 / 2) * (((1774 + 54 * 1465^(1 / 2))^(2 / 3) + 7 * (1774 + 54 * 1465^(1 / 2))^(1 / 3) - 104) / (1774 + 54 * 1465^(1 / 2))^(1 / 3))^(1 / 2) + 9) * t) + (1 / 189864) * (((30 * 1i) * (((1774 + 54 * 1465^(1 / 2))^(2 / 3) + 7 * (1774 + 54 * 1465^(1 / 2))^(1 / 3) - 104) / (1774 + 54 * 1465^(1 / 2))^(1 / 3))^(1 / 2) - (10386 * 1i) * 3^(1 / 2) + ((363 * 1i) * 3^(1 / 2) * (1774 + 54 * 1465^(1 / 2))^(2 / 3) - (37752 * 1i) * 3^(1 / 2)) / (1774 + 54 * 1465^(1 / 2))^(1 / 3)) * (( - 14 * (1774 + 54 * 1465^(1 / 2))^(1 / 3) + (1774 + 54 * 1465^(1 / 2))^(2 / 3) - 104) / (1774 + 54 * 1465^(1 / 2))^(1 / 3) + 90 * 3^(1 / 2) / (((1774 + 54 * 1465^(1 / 2))^(2 / 3) + 7 * (1774 + 54 * 1465^(1 / 2))^(1 / 3) - 104) / (1774 + 54 * 1465^(1 / 2))^(1 / 3))^(1 / 2))^(1 / 2) + (210 * ((1774 + 54 * 1465^(1 / 2))^(1 / 3) - (1 / 14) * (1774 + 54 * 1465^(1 / 2))^(2 / 3) + 52 / 7) / ((1774 + 54 * 1465^(1 / 2))^(1 / 3) * (((1774 + 54 * 1465^(1 / 2))^(2 / 3) + 7 * (1774 + 54 * 1465^(1 / 2))^(1 / 3) - 104) / (1774 + 54 * 1465^(1 / 2))^(1 / 3))^(1 / 2)) + 5082 * 3^(1 / 2) * ( - 2615 / 1694 + ( - (1 / 14) * (1774 + 54 * 1465^(1 / 2))^(2 / 3) + 52 / 7) / (1774 + 54 * 1465^(1 / 2))^(1 / 3))) * (((1774 + 54 * 1465^(1 / 2))^(2 / 3) + 7 * (1774 + 54 * 1465^(1 / 2))^(1 / 3) - 104) / (1774 + 54 * 1465^(1 / 2))^(1 / 3))^(1 / 2) - 1350 * 3^(1 / 2) / (((1774 + 54 * 1465^(1 / 2))^(2 / 3) + 7 * (1774 + 54 * 1465^(1 / 2))^(1 / 3) - 104) / (1774 + 54 * 1465^(1 / 2))^(1 / 3))^(1 / 2) - 210 + (15 * (1774 + 54 * 1465^(1 / 2))^(2 / 3) - 1560) / (1774 + 54 * 1465^(1 / 2))^(1 / 3) + ( - (121 * 1i) * (((((1774 + 54 * 1465^(1 / 2))^(2 / 3) + 7 * (1774 + 54 * 1465^(1 / 2))^(1 / 3) - 104) / (1774 + 54 * 1465^(1 / 2))^(1 / 3))^(1 / 2) * (1774 + 54 * 1465^(1 / 2))^(2 / 3) + 90 * 3^(1 / 2) * (1774 + 54 * 1465^(1 / 2))^(1 / 3) - 14 * (1774 + 54 * 1465^(1 / 2))^(1 / 3) * (((1774 + 54 * 1465^(1 / 2))^(2 / 3) + 7 * (1774 + 54 * 1465^(1 / 2))^(1 / 3) - 104) / (1774 + 54 * 1465^(1 / 2))^(1 / 3))^(1 / 2) - 104 * (((1774 + 54 * 1465^(1 / 2))^(2 / 3) + 7 * (1774 + 54 * 1465^(1 / 2))^(1 / 3) - 104) / (1774 + 54 * 1465^(1 / 2))^(1 / 3))^(1 / 2)) / ((1774 + 54 * 1465^(1 / 2))^(1 / 3) * (((1774 + 54 * 1465^(1 / 2))^(2 / 3) + 7 * (1774 + 54 * 1465^(1 / 2))^(1 / 3) - 104) / (1774 + 54 * 1465^(1 / 2))^(1 / 3))^(1 / 2)))^(3 / 2) + 121 * (((1774 + 54 * 1465^(1 / 2))^(2 / 3) + 7 * (1774 + 54 * 1465^(1 / 2))^(1 / 3) - 104) / (1774 + 54 * 1465^(1 / 2))^(1 / 3))^(3 / 2)) * 3^(1 / 2)) * exp((1 / 6) * (1i * 3^(1 / 2) * (( - 14 * (1774 + 54 * 1465^(1 / 2))^(1 / 3) + (1774 + 54 * 1465^(1 / 2))^(2 / 3) - 104) / (1774 + 54 * 1465^(1 / 2))^(1 / 3) + 90 * 3^(1 / 2) / (((1774 + 54 * 1465^(1 / 2))^(2 / 3) + 7 * (1774 + 54 * 1465^(1 / 2))^(1 / 3) - 104) / (1774 + 54 * 1465^(1 / 2))^(1 / 3))^(1 / 2))^(1 / 2) + 3^(1 / 2) * (((1774 + 54 * 1465^(1 / 2))^(2 / 3) + 7 * (1774 + 54 * 1465^(1 / 2))^(1 / 3) - 104) / (1774 + 54 * 1465^(1 / 2))^(1 / 3))^(1 / 2) - 9) * t) + (1 / 189864) * (( - 30 * (((1774 + 54 * 1465^(1 / 2))^(2 / 3) + 7 * (1774 + 54 * 1465^(1 / 2))^(1 / 3) - 104) / (1774 + 54 * 1465^(1 / 2))^(1 / 3))^(1 / 2) - 10386 * 3^(1 / 2) + (363 * 3^(1 / 2) * (1774 + 54 * 1465^(1 / 2))^(2 / 3) - 37752 * 3^(1 / 2)) / (1774 + 54 * 1465^(1 / 2))^(1 / 3)) * ((14 * (1774 + 54 * 1465^(1 / 2))^(1 / 3) - (1774 + 54 * 1465^(1 / 2))^(2 / 3) + 104) / (1774 + 54 * 1465^(1 / 2))^(1 / 3) + 90 * 3^(1 / 2) / (((1774 + 54 * 1465^(1 / 2))^(2 / 3) + 7 * (1774 + 54 * 1465^(1 / 2))^(1 / 3) - 104) / (1774 + 54 * 1465^(1 / 2))^(1 / 3))^(1 / 2))^(1 / 2) + (210 * ((1774 + 54 * 1465^(1 / 2))^(1 / 3) - (1 / 14) * (1774 + 54 * 1465^(1 / 2))^(2 / 3) + 52 / 7) / ((1774 + 54 * 1465^(1 / 2))^(1 / 3) * (((1774 + 54 * 1465^(1 / 2))^(2 / 3) + 7 * (1774 + 54 * 1465^(1 / 2))^(1 / 3) - 104) / (1774 + 54 * 1465^(1 / 2))^(1 / 3))^(1 / 2)) - 5082 * 3^(1 / 2) * ( - 2615 / 1694 + ( - (1 / 14) * (1774 + 54 * 1465^(1 / 2))^(2 / 3) + 52 / 7) / (1774 + 54 * 1465^(1 / 2))^(1 / 3))) * (((1774 + 54 * 1465^(1 / 2))^(2 / 3) + 7 * (1774 + 54 * 1465^(1 / 2))^(1 / 3) - 104) / (1774 + 54 * 1465^(1 / 2))^(1 / 3))^(1 / 2) + 1350 * 3^(1 / 2) / (((1774 + 54 * 1465^(1 / 2))^(2 / 3) + 7 * (1774 + 54 * 1465^(1 / 2))^(1 / 3) - 104) / (1774 + 54 * 1465^(1 / 2))^(1 / 3))^(1 / 2) - 210 + (15 * (1774 + 54 * 1465^(1 / 2))^(2 / 3) - 1560) / (1774 + 54 * 1465^(1 / 2))^(1 / 3) + (121 * (( - (((1774 + 54 * 1465^(1 / 2))^(2 / 3) + 7 * (1774 + 54 * 1465^(1 / 2))^(1 / 3) - 104) / (1774 + 54 * 1465^(1 / 2))^(1 / 3))^(1 / 2) * (1774 + 54 * 1465^(1 / 2))^(2 / 3) + 90 * 3^(1 / 2) * (1774 + 54 * 1465^(1 / 2))^(1 / 3) + 14 * (1774 + 54 * 1465^(1 / 2))^(1 / 3) * (((1774 + 54 * 1465^(1 / 2))^(2 / 3) + 7 * (1774 + 54 * 1465^(1 / 2))^(1 / 3) - 104) / (1774 + 54 * 1465^(1 / 2))^(1 / 3))^(1 / 2) + 104 * (((1774 + 54 * 1465^(1 / 2))^(2 / 3) + 7 * (1774 + 54 * 1465^(1 / 2))^(1 / 3) - 104) / (1774 + 54 * 1465^(1 / 2))^(1 / 3))^(1 / 2)) / ((1774 + 54 * 1465^(1 / 2))^(1 / 3) * (((1774 + 54 * 1465^(1 / 2))^(2 / 3) + 7 * (1774 + 54 * 1465^(1 / 2))^(1 / 3) - 104) / (1774 + 54 * 1465^(1 / 2))^(1 / 3))^(1 / 2)))^(3 / 2) - 121 * (((1774 + 54 * 1465^(1 / 2))^(2 / 3) + 7 * (1774 + 54 * 1465^(1 / 2))^(1 / 3) - 104) / (1774 + 54 * 1465^(1 / 2))^(1 / 3))^(3 / 2)) * 3^(1 / 2)) * exp( - (1 / 6) * (3^(1 / 2) * (((1774 + 54 * 1465^(1 / 2))^(2 / 3) + 7 * (1774 + 54 * 1465^(1 / 2))^(1 / 3) - 104) / (1774 + 54 * 1465^(1 / 2))^(1 / 3))^(1 / 2) - 3^(1 / 2) * ((14 * (1774 + 54 * 1465^(1 / 2))^(1 / 3) - (1774 + 54 * 1465^(1 / 2))^(2 / 3) + 104) / (1774 + 54 * 1465^(1 / 2))^(1 / 3) + 90 * 3^(1 / 2) / (((1774 + 54 * 1465^(1 / 2))^(2 / 3) + 7 * (1774 + 54 * 1465^(1 / 2))^(1 / 3) - 104) / (1774 + 54 * 1465^(1 / 2))^(1 / 3))^(1 / 2))^(1 / 2) + 9) * t) - (121 / 189864) * exp( - (1 / 6) * (3^(1 / 2) * (((1774 + 54 * 1465^(1 / 2))^(2 / 3) + 7 * (1774 + 54 * 1465^(1 / 2))^(1 / 3) - 104) / (1774 + 54 * 1465^(1 / 2))^(1 / 3))^(1 / 2) + 3^(1 / 2) * ((14 * (1774 + 54 * 1465^(1 / 2))^(1 / 3) - (1774 + 54 * 1465^(1 / 2))^(2 / 3) + 104) / (1774 + 54 * 1465^(1 / 2))^(1 / 3) + 90 * 3^(1 / 2) / (((1774 + 54 * 1465^(1 / 2))^(2 / 3) + 7 * (1774 + 54 * 1465^(1 / 2))^(1 / 3) - 104) / (1774 + 54 * 1465^(1 / 2))^(1 / 3))^(1 / 2))^(1 / 2) + 9) * t) * (( - (30 / 121) * (((1774 + 54 * 1465^(1 / 2))^(2 / 3) + 7 * (1774 + 54 * 1465^(1 / 2))^(1 / 3) - 104) / (1774 + 54 * 1465^(1 / 2))^(1 / 3))^(1 / 2) - (10386 / 121) * 3^(1 / 2) + (3 * 3^(1 / 2) * (1774 + 54 * 1465^(1 / 2))^(2 / 3) - 312 * 3^(1 / 2)) / (1774 + 54 * 1465^(1 / 2))^(1 / 3)) * ((14 * (1774 + 54 * 1465^(1 / 2))^(1 / 3) - (1774 + 54 * 1465^(1 / 2))^(2 / 3) + 104) / (1774 + 54 * 1465^(1 / 2))^(1 / 3) + 90 * 3^(1 / 2) / (((1774 + 54 * 1465^(1 / 2))^(2 / 3) + 7 * (1774 + 54 * 1465^(1 / 2))^(1 / 3) - 104) / (1774 + 54 * 1465^(1 / 2))^(1 / 3))^(1 / 2))^(1 / 2) + ( - (210 / 121) * ((1774 + 54 * 1465^(1 / 2))^(1 / 3) - (1 / 14) * (1774 + 54 * 1465^(1 / 2))^(2 / 3) + 52 / 7) / ((1774 + 54 * 1465^(1 / 2))^(1 / 3) * (((1774 + 54 * 1465^(1 / 2))^(2 / 3) + 7 * (1774 + 54 * 1465^(1 / 2))^(1 / 3) - 104) / (1774 + 54 * 1465^(1 / 2))^(1 / 3))^(1 / 2)) + 42 * 3^(1 / 2) * ( - 2615 / 1694 + ( - (1 / 14) * (1774 + 54 * 1465^(1 / 2))^(2 / 3) + 52 / 7) / (1774 + 54 * 1465^(1 / 2))^(1 / 3))) * (((1774 + 54 * 1465^(1 / 2))^(2 / 3) + 7 * (1774 + 54 * 1465^(1 / 2))^(1 / 3) - 104) / (1774 + 54 * 1465^(1 / 2))^(1 / 3))^(1 / 2) - (1350 / 121) * 3^(1 / 2) / (((1774 + 54 * 1465^(1 / 2))^(2 / 3) + 7 * (1774 + 54 * 1465^(1 / 2))^(1 / 3) - 104) / (1774 + 54 * 1465^(1 / 2))^(1 / 3))^(1 / 2) + 210 / 121 + ( - (15 / 121) * (1774 + 54 * 1465^(1 / 2))^(2 / 3) + 1560 / 121) / (1774 + 54 * 1465^(1 / 2))^(1 / 3) + ((( - (((1774 + 54 * 1465^(1 / 2))^(2 / 3) + 7 * (1774 + 54 * 1465^(1 / 2))^(1 / 3) - 104) / (1774 + 54 * 1465^(1 / 2))^(1 / 3))^(1 / 2) * (1774 + 54 * 1465^(1 / 2))^(2 / 3) + 90 * 3^(1 / 2) * (1774 + 54 * 1465^(1 / 2))^(1 / 3) + 14 * (1774 + 54 * 1465^(1 / 2))^(1 / 3) * (((1774 + 54 * 1465^(1 / 2))^(2 / 3) + 7 * (1774 + 54 * 1465^(1 / 2))^(1 / 3) - 104) / (1774 + 54 * 1465^(1 / 2))^(1 / 3))^(1 / 2) + 104 * (((1774 + 54 * 1465^(1 / 2))^(2 / 3) + 7 * (1774 + 54 * 1465^(1 / 2))^(1 / 3) - 104) / (1774 + 54 * 1465^(1 / 2))^(1 / 3))^(1 / 2)) / ((1774 + 54 * 1465^(1 / 2))^(1 / 3) * (((1774 + 54 * 1465^(1 / 2))^(2 / 3) + 7 * (1774 + 54 * 1465^(1 / 2))^(1 / 3) - 104) / (1774 + 54 * 1465^(1 / 2))^(1 / 3))^(1 / 2)))^(3 / 2) + (((1774 + 54 * 1465^(1 / 2))^(2 / 3) + 7 * (1774 + 54 * 1465^(1 / 2))^(1 / 3) - 104) / (1774 + 54 * 1465^(1 / 2))^(1 / 3))^(3 / 2)) * 3^(1 / 2))
Well that's pretty clear, right?
댓글 수: 3
I recall you telling me how it replies as a sum of roots. I do not recall you performing something with a vpa function? Can you please explain what your doing here? It does appear to work now. Thanks in advance
vpa() is only going to give an approximation. That approximation is probably going to be close enough for graphics. If you were to laplace the result of the vpa of the ilaplace, you would get something that was not so nice. For example, if you vpa to 50 digits, you would get [2.10758034974676e+31 3.125e+64 3.125e+64] [3.125e+63 1.875e+64 3.125e+64 5.625e+64 3.125e+64] and with the default digits (32) you get a complex-valued system. The breakpoint appears to be vpa to 36 digits.
Maple's invlaplace expresses in terms of RootOf, and fortunately Maple's laplace is able to detect that RootOf and transform it back nicely.
Doing some checking, but not proving mathematically, it appears that laplace(ramp_response) you would get for the system (N1*s+N0)/Q(s) will be 1/Q(s)^2 * (N0*Q(s) + N1*L(Q(s)))
Here L is an arbitrary name for the transformation on the polynomial sum(a(i+1)*s^i) for i=0 to D (the maximum degree) to the polynomial sum((i-1)*a(i+1)*s^i) for i = 0 to D . For example,
a(5)*s^4 + a(4)*s^3 + a(3)*s^2 + a(2)*s^1 + a(1)*s^0
to become
(4-1)*a(5)*s^4 + (3-1)*a(4)*s^3 + (2-1)*a(3)*s^2 + (1-1)*a(2)*s^1 + (0-1)*a(1)*s^0
which is
3*a(5)*s^4 + 2*a(4)*s^3 + a(3)*s^2 - a(1)
This transformation can easily be done numerically to create the coefficients of the new numerator in transfer function form. There is probably a nice numeric way to square the denominator as well, but it is not immediately obvious to me.
Robert
2016년 10월 9일
After a little testing it appears that taking the inverse and multiplying it by t and plotting it is not giving me the correct answer
Taking the tf in S and multiplying that by 1/s^2 then taking the inverse and using the vpa function is giving the correct answer at least it appears so
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Linear Algebra에 대해 자세히 알아보기
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!웹사이트 선택
번역된 콘텐츠를 보고 지역별 이벤트와 혜택을 살펴보려면 웹사이트를 선택하십시오. 현재 계신 지역에 따라 다음 웹사이트를 권장합니다:
또한 다음 목록에서 웹사이트를 선택하실 수도 있습니다.
사이트 성능 최적화 방법
최고의 사이트 성능을 위해 중국 사이트(중국어 또는 영어)를 선택하십시오. 현재 계신 지역에서는 다른 국가의 MathWorks 사이트 방문이 최적화되지 않았습니다.
미주
- América Latina (Español)
- Canada (English)
- United States (English)
유럽
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)
