Continue to Site

Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

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

Recent content by underwere

  1. underwere

    Array Declaration

    in order to use a matrix whose dimensions are not known beforehand u can use an allocatable matrix, eg: program . real, allocatable :: a(:,:) . . . . allocate ( a(3,6) ) . end this creates a matrix and u get to give the dimensions u want later on. it could be like this: program integer...

Part and Inventory Search