csv ファイルから不明なサイズのフロートの大きなデータ ブロックを読み取るプログラムを作成しようとしている人が私に手を差し伸べてくれるかどうか疑問に思っていました。これは既に MATLAB で作成しましたが、これをコンパイルして配布したいので、c++ に移行します。
私はただ学んで、これを読んで始めようとしています
7,5,1989
2,4,2312
テキストファイルから。
これまでのコード。
#include <iostream>
#include <fstream>
#include <vector>
#include <string>
#include <sstream>
#include <stdlib.h>
const int ROWS = 2;
const int COLS = 3;
const int BUFFSIZE = 80;
int main() {
int array[ROWS][COLS];
char buff[BUFFSIZE];
std::ifstream file( "textread.csv" );
std::string line;
int col = 0;
int row = 0;
while( std::getline( file, line ) )
{
std::istringstream iss( line );
std::string result;
while( std::getline( iss, result, ',' ) )
{
array[row][col] = atoi( result.c_str() );
std::cout << result << std::endl;
std::cout << "column " << col << std::endl;
std::cout << "row " << row << std::endl;
col = col+1;
}
row = row+1;
col = 0;
}
return 0;
}
私が使用している私のmatlabコードは>>
fid = fopen(twoDM,'r');
s = textscan(fid,'%s','Delimiter','\n');
s = s{1};
s_e3t = s(strncmp('E3T',s,3));
s_e4q = s(strncmp('E4Q',s,3));
s_nd = s(strncmp('ND',s,2));
[~,cell_num_t,node1_t,node2_t,node3_t,mat] = strread([s_e3t{:}],'%s %u %u %u %u %u');
node4_t = node1_t;
e3t = [node1_t,node2_t,node3_t,node4_t];
[~,cell_num_q,node1_q,node2_q,node3_q,node_4_q,~] = strread([s_e4q{:}],'%s %u %u %u %u %u %u');
e4q = [node1_q,node2_q,node3_q,node_4_q];
[~,~,node_X,node_Y,~] = strread([s_nd{:}],'%s %u %f %f %f');
cell_id = [cell_num_t;cell_num_q];
[~,i] = sort(cell_id,1,'ascend');
cell_node = [e3t;e4q];
cell_node = cell_node(i,:);
C++ コードで発生した最初のコンパイル エラーを修正してくれた totrace に感謝しますが、継続的なヒントのヘルプを探しています。
小道具、アレックス・ビアス