1

誰かが Matlab の関数と同等のものを教えてくれるかどうか疑問に思っていましたselectifrOx?

for(i = 1; i <= sizeof(vdates); i = i+1)
    daily_file = selectifr([bid,ask], dates .== vdates[i]);
    if empty continue
    save daily_file contract_name + "_" + sprint(vdates[i]) ;

このプログラムを に翻訳するにはどうすればよいMatlabですか?

4

1 に答える 1

1

使用したことはありませんが、ドキュメントOxから簡単にグーグル検索した後。

The selectifr function returns an s x n matrix, 
selecting only those rows from ma which have at least one non-zero element 
in the corresponding row of mifr. 

関数のどこでselectifr(const ma, const mifr);

ma = m x n matrix to select from

mifr = m x q boolean matrix specifying rows to select

したがって、基本的には、[ビッド、アスク] の日付を指定して選択します。matlabの用語では、ユニオンの交差ここで必要なものかもしれないと思います

于 2013-09-11T00:00:13.820 に答える