필터 지우기
필터 지우기

Why can't I read from a file in Entity Generation's Intergeneration Time Action?

조회 수: 2 (최근 30일)
The Code:
persistent rngInit;
coder.extrinsic('str2num');
coder.extrinsic('fgetl');
if isempty(rngInit)
SeedfileID = fopen('Seed.txt');
SeedString=fgetl(SeedfileID);
fclose(SeedfileID);
Seed=str2num(SeedString);
Seed=uint16(Seed);
rng(Seed);
rngInit=true;
end
mu = 12;
dt = -mu * log(1-rand());
Problem is that Seed always comes back as 0. The input file contains a single line of text containing "6<newline>" (without the quotes)

답변 (0개)

카테고리

Help CenterFile Exchange에서 Discrete-Event Simulation에 대해 자세히 알아보기

제품

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by