User profile: audrius69

User info
User name:audrius69
History
Joined:
Number of posts:9
Latest posts:

Matrix and vector multiplication
Thanks, got it working like this: [code] void Matrix::allocation(int ln, int lm) { n=ln; m=l...

Matrix and vector multiplication
Hi, sorry it took me so long. I replaced scanf and printf as you said. Also changed matrix declarati...

Matrix and vector multiplication
Hello, so I have an assigment in uni to write program that multiplies matrix by the vector. Also it ...

RungeKutta class C++
Thank you very much. You were right, base class lacked pointer to x. Also call to fk() function had ...

RungeKutta class C++
So this is my code right now. main.cpp calls step() function from RungeKutta.cpp and step() should c...