From: Gordon on 15 Jul 2010 16:56 I Think thereĀ“s mitake in line 2 >1 v = a.*x.^2 + b.*y.^2 + c.*z.^2 + ... >2 d.*x.*y + e.*x.*z + f.*x.*y.*z + ... > 3 g.*x + h.*y + i.*z + j; Correct is this code: 1 v = a.*x.^2 + b.*y.^2 + c.*z.^2 + ... 2 d.*x.*y + e.*x.*z + f.*y.*z + ... 3 g.*x + h.*y + i.*z + j; Greetings from A-Town Gordon
|
Pages: 1 Prev: fopen returns -1 for anything besides 'r' Next: Loop with changing Variable |