Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

  • Congratulations waross on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: kripa
  • Order by date
  1. kripa

    Large Stiffness Matrix

    yes, true....u need to create the matrix dynamically..in C++/C , use the "new" operator..It allocates memory in the heap (more than sufficient)..Say int *i = new int[2000]..Think it is a good option to write a 'Matrix' class that handles this..It could have a memeber variable like...
Back
Top