필터 지우기
필터 지우기

how i can use a order that it's input is scalar but i want use from it for amounts of a vector

조회 수: 2 (최근 30일)
i want have a vector that members of it are amounts a numerical integral for a function at diffrent domains, that this domains are Initialized by a vector for integral order. as you know domain input for integral order is scalar hence when i use a domain vector i recive error. because i don't know size of the vector thus i can't use for loop.
for example :
f=@(x)(x); xmin=[-1 0]; xmax=[0 1]; [domain1 domain2]=integral(f,xmin,xamx)

채택된 답변

Walter Roberson
Walter Roberson 2016년 3월 20일
f=@(x)(x); xmin=[-1 0]; xmax=[0 1];
for K = 1 : length(xmin)
domain(K) = integral(f, xmin(K), xmax(K));
end

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Energy Production에 대해 자세히 알아보기

태그

아직 태그를 입력하지 않았습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by