Borrar filtros
Borrar filtros

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

6 visualizaciones (últimos 30 días)
巴卡木梨
巴卡木梨 el 22 de Abr. de 2024
Respondida: Dyuman Joshi el 22 de Abr. de 2024

Respuesta aceptada

Dyuman Joshi
Dyuman Joshi el 22 de Abr. de 2024
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)

Más respuestas (0)

Categorías

Más información sobre Big Data Processing en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!