필터 지우기
필터 지우기

使用limit函数求​极限提示不允许不同类​型之间赋值,怎么解决​?

조회 수: 8 (최근 30일)
巴卡木梨
巴卡木梨 2024년 4월 22일
답변: Dyuman Joshi 2024년 4월 22일

채택된 답변

Dyuman Joshi
Dyuman Joshi 2024년 4월 22일
I scrolled across the image - jie is already defined as a struct (possibly in the code before this particular lines), thus you can not over-write it using indexing.
You can either
1) Over-write jie completely, like this -
jie = [limit(f, inf) limit(f, +inf) limit(f,-inf)]
or
2) Clear jie and then assign the limit values -
clear jie
jie(1) = limit(f, inf)
jie(2) = limit(f, +inf)
jie(3) = limit(f, -inf)

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Mathematics and Optimization에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!