Showing : At least one END is missing: the statement may begin here.

39 次查看(过去 30 天)
I am trying to run this code but getting the mentioned error:
I tried to indent the code with smart ident but it is not working either! solution suggested for this kind of error.
rng (42);
s = randi ([0, 3], 1, 100000);
dlmwrite ( 'random_4.txt' , s, ',' );
rng (42);
s = randi ([0, 1], 1, 100000);
dlmwrite ( 'random_1.txt' , s, ',' );
rng (42 * 42);
s = randn (1, 100000);
dlmwrite ( 'randn_seed4242.txt' , s, ',' );
>> create_random_data
Error: File: rng.m Line: 6 Column: 1
At least one END is missing: the statement may begin here.
Error in create_random_data (line 3)
rng (42);
  6 个评论
Jacob Wood
Jacob Wood 2020-2-22
编辑:Jacob Wood 2020-2-22
When I run the attached create_random_data.m the only error I get is this:
Error using dlmwrite (line 104)
, is not a valid attribute or delimiter. Delimiter must be a single character.
Error in Untitled (line 5)
dlmwrite('random_4.txt', s, ', ');
This is caused by the space after the commas in all your dlmwrite calls. Just leave the comma in there, dlmwrite can only use single character delimiters. The code functions properly after that edit for me.
However, your function rng() is overwriting Matlab's built-in rng() and is the reason the code is breaking for you. You either need to delete this rng.m file and use Matlab's rng(), or use proper syntax in defining your rng(). The error you are seeing is because Matlab expects to see the keyword "end" at the end of your if statements and function definitions, not "endif" or "endfunction".
Yulia M
Yulia M 2020-2-22
@jacob Wood thank you it was the problem you specified it helped me a lot.

请先登录,再进行评论。

回答(1 个)

the cyclist
the cyclist 2020-2-22
编辑:the cyclist 2020-2-22
The last line of rng.m is
endfunction
but it should be just
end
I also spotted another problem, which is that you should have
end % this is correct MATLAB syntax
instead of
endif % this is not correct MATLAB syntax
You are then going to encounter a new error:
Error using horzcat
Dimensions of arrays being concatenated are not consistent.
Error in rng (line 4)
state = [state_n, state_i];
Error in create_random_data (line 3)
rng(42);
but it is not perfectly clear to me what you are trying to do there, so I suggest you try to solve that one on your own, and post a new question if you get stuck.

类别

Help CenterFile Exchange 中查找有关 Introduction to Installation and Licensing 的更多信息

标签

产品


版本

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by