私はMatLabでこの時系列関数を持っています:
function y = time(a, b, c, d, e, f, g, h, i, j, k, l)
x = [a b c d e f g h i j k l];
ts1 = timeseries(x,1:12);
ts1.Name = 'Monthly Count';
ts1.TimeInfo.Units = 'months';
ts1.TimeInfo.Format = 'mmm dd, yy';
ts1.Time=ts1.Time-ts1.Time(1);
plot(ts1);
C#ライブラリとしてデプロイしました。では、関数'time'を呼び出して、パラメーターを渡すにはどうすればよいですか?
ご協力いただきありがとうございます