create zero column vector

290 ビュー (過去 30 日間)
Benjamin Cobb
Benjamin Cobb 2020 年 3 月 26 日
回答済み: Venkata Hasini Royal 2022 年 10 月 22 日
I dont how to create a zero column vector in a function
I thought this was how you did it but i keep getting errors
funtion createzerocolumnvector(x)
x = zeros(56,1)
end
DOES ANYONE KNOW HOW TO DO IT?

回答 (3 件)

Bhaskar R
Bhaskar R 2020 年 3 月 26 日
zeros is the MATLAB function already, its not recommended to create again a function "createzerocolumnvector(x)", use direct command as
x = zeros(10, 1); % where sencond argument should be 1 so that you get column vector, first argument says number of rows in zeros column vector
For more details read
  1 件のコメント
Benjamin Cobb
Benjamin Cobb 2020 年 3 月 27 日
thanks but i need it in a funtion, all good tho found how to do it

サインインしてコメントする。


Peng Li
Peng Li 2020 年 3 月 26 日
x is your input of the function, and within the function body, you overwrite it by assignment. and you don't have any output in this function. after executing, x goes out of scope.
try this if you really want a separate function to do this (although I don't understand why you are so keen on this lol):
function y = createZeroColumn(n)
y = zeros(n, 1);
end
Use y = createZerosColumn(56); to call this function, and y is the result you want.
  1 件のコメント
Benjamin Cobb
Benjamin Cobb 2020 年 3 月 27 日
thanks

サインインしてコメントする。


Venkata Hasini Royal
Venkata Hasini Royal 2022 年 10 月 22 日
create a 5 by 1 column vectors of zeros

カテゴリ

Help Center および File ExchangeMATLAB についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by