integer variable

Hi all,
how can I define an integer variable at the begining of program?
thank you in advance;

 采纳的回答

Can you be more specific. You can do something like.
A = int16(zeros(10,1));
but whether that is what you need depends.

2 个评论

Hi Wayne,
in newer versions you might write zeros(10, 1, 'int16'): esp. interesting for large arrays, since it doesn't generate a double array first and convert later but creates the int16 array directly.
Titus
And in older versions this works efficiently:
clear('A') % On demand only!
A(10, 1) = int16(0);

请先登录,再进行评论。

类别

帮助中心File Exchange 中查找有关 Logical 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by