CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    May 1999
    Posts
    3

    Help me with this, please.

    Here's what a sample MADYMO output file looks like, which should be the
    input file for VC++ program

    Pelvis CFC1000
    Chest CFC1000
    Head CFC1000
    Res. acceleration (m/s**2)
    X-comp. acceleration (m/s**2)
    Y-comp. acceleration (m/s**2)
    Z-comp. acceleration (m/s**2)
    0.000000E+00 this is the time factor
    4.591800E+01 -8.680537E+00 1.582207E-01 -4.508975E+01
    2.396370E+01 1.077382E+01 2.136030E+01 -1.386151E+00
    3.944756E+00 -2.022232E+00 -2.242335E+00 -2.538427E+00
    1.000000E-01
    1.667233E+01 -1.080726E+01 1.402148E+00 -1.261760E+01
    1.900671E+01 1.204874E+01 1.426729E+01 -3.539373E+00
    5.373448E+00 -1.293325E+00 -2.458095E+00 -4.599894E+00

    and so on.........

    The format that I need from this file (to be used in EXCEL) is as
    follows :


    Time Pelvis-Res. Pelvis-X Pelvis-Y Pelvis-Z Chest-Res. Chest-X and so on

    0.0 123 234 454 877 blah blah
    0.1 333 444 blah blah blah blah
    How do I go about it?? Somebody please help.


  2. #2
    Join Date
    Apr 1999
    Posts
    31

    Re: Help me with this, please.

    Excel will take CSV file format("***","****").This means you have to use double "
    ****" then put commma to seperate the next "****".
    I hope this will help you.


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured