| Author |
Comment/Response |
Kim
|
12/19/11 2:18pm
I have .txt files that contain one column of data that I would like to import for use in Mathematica. I am able to import these files with the following code:
target1 =
Take[Import[path1 <> FileNameJoin[{"/FILTERS", "mulinearFAT.txt"}],
"Table"], steps];
The imported data looks like this:
target1 = {{16873.9}, {2397.14}, {782.087}, {344.054}, {179.726}, {105.029},{66.4013}}.
I would like this entry to be a row vector of 7 values, but when I do the transpose of target1, Mathematica is grouping all the values into one entry such that the Length[Transpose[target1]] = 1.
How can I get Mathematic to recognize all the entires in this variable during a transpose?
URL: , |
|