필터 지우기
필터 지우기

error using sym/subindex

조회 수: 2 (최근 30일)
Fernando Moreno
Fernando Moreno 2022년 3월 9일
답변: Torsten 2022년 3월 9일
Im trying to solve a problem bt suddenly I encountered a error in sym/subindex every time I try to run it
syms f(x)
f(x)=sqrt(1-x^3)
f(x) = 
Volumen=pi*(int(f(x),[0,1]))^2
Volumen = 

답변 (1개)

Torsten
Torsten 2022년 3월 9일
syms x
f(x) = sqrt(1-x^3);
V = pi* int(f^2,[0,1])

카테고리

Help CenterFile Exchange에서 Conversion Between Symbolic and Numeric에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by