필터 지우기
필터 지우기

difference result with same equation

조회 수: 1 (최근 30일)
vaya putra
vaya putra 2018년 7월 19일
답변: vaya putra 2018년 7월 19일
my commands
bhp=100*ones(10,1);
bht=[500;500;500;500;500;300;300;300;300;300];
p= @(bhp,bhT) bhp + g*dz.*rho(bhp,bhT);
tried to validation p(bhp,bhT).*bhp + g*dz.*rho(bhp,bhT)
result ans =
1.0e+09 *
-2.2263
-2.2263
-2.2263
-2.2263
-2.2263
-4.7130
-4.7130
-4.7130
-4.7130
-4.7130
how can be i got difference result if i assume a=g*dz.*rho(bhp,bhT); a =
1.0e+07 *
-2.2042
-2.2042
-2.2042
-2.2042
-2.2042
-4.6664
-4.6664
-4.6664
-4.6664
-4.6664
b=bhp;
c=a+b
result
c =
1.0e+07 *
-2.2042
-2.2042
-2.2042
-2.2042
-2.2042
-4.6664
-4.6664
-4.6664
-4.6664
-4.6664
anyone can help me?
  댓글 수: 1
Aquatris
Aquatris 2018년 7월 19일
편집: Aquatris 2018년 7월 19일
because at the top results you are evaluating
p(bhp,bhT).*bhp + g*dz.*rho(bhp,bhT)
and at the bottom
bhp + g*dz.*rho(bhp,bhT)
This can further be proved by looking at the results and seeing the relation
100*(bottom results)+a = (top results)
Also your code is missing g and rho, maybe other variables aswell for me to run it on my Matlab to further help.

댓글을 달려면 로그인하십시오.

답변 (2개)

vaya putra
vaya putra 2018년 7월 19일
thank you very much, i understand

vaya putra
vaya putra 2018년 7월 19일
actually i want calculate this equation,
that why i define by my self bhp and bhT, ho to prove aot calculate bhp,bhT if i get value (bhp and bhT)
p = @(bhp,bhT) bhp + g*dz.*rho(bhp,bhT);

카테고리

Help CenterFile Exchange에서 Programmatic Model Editing에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by