Vous n’êtes pas connecté.
Les_Conrads
God





möchte ich in Delphi übersätzen...|
|
Code source |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
for j:=1 to index do begin aa:=aa+ab; for k:=1 to index do begin if k<>j then ab:=ab* ( (x-(feldx[j])) / ((feldx[k])-(feldx[k])) ) end; ab:=0; end; |
Zitat von »Lev«
ich frag mich ja wann die autoindustrie anfängt en used-look anzubieten![]()
Les_Conrads
God





Zitat von »Lev«
ich frag mich ja wann die autoindustrie anfängt en used-look anzubieten![]()
Les_Conrads
God





|
|
Code source |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
function tform1.formel(x:real):real ;
var j,k:integer; aa,ab:real;
begin
aa:=0;
ab:=1;
for j:=1 to index do
begin
for k:=1 to index do
begin
if k<>j then
ab:=ab*
(
(x-(feldx[k])) / ((feldx[j])-(feldx[k]))
) ;
end;
aa:=aa+((feldy[j])*ab);
ab:=1;
end;
result:=aa
|
;D
;D
Zitat von »Lev«
ich frag mich ja wann die autoindustrie anfängt en used-look anzubieten![]()
-