Using an existing vector in a .M file

3 ビュー (過去 30 日間)
Eduardo Chacin
Eduardo Chacin 2018 年 8 月 31 日
コメント済み: Eduardo Chacin 2018 年 8 月 31 日
Hello! I've made a simple function file and let's say I need to input a vector (50 elements) so that a function gives me the resulting vector for those elements. I have the vector in the workspace but when I try to use it as an input (instead of for example introducing the input like this [1 2 3 4 5... 50]) the vector is not recognised as a valid entry and is as if i hadn't introduced nothing. How could I solve this? Is a problem in the script? I have it as:
P_k='Introduce the 50 values';
P_k=input(P_K);
I'm new into this and I really don't know how can I solve this and hadn't found anything related
  8 件のコメント
Stephen23
Stephen23 2018 年 8 月 31 日
編集済み: Stephen23 2018 年 8 月 31 日
function C = myFun(A,B)
C = A + B;
end
Then call the function with the required inputs:
myFun(pi,0:10)
Eduardo Chacin
Eduardo Chacin 2018 年 8 月 31 日
@Stephen Cobeldick thank you very much

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

回答 (1 件)

M
M 2018 年 8 月 31 日
  1 件のコメント
Eduardo Chacin
Eduardo Chacin 2018 年 8 月 31 日
But that's for storing the input as a vector. I already have the vector and I want to use it as an input.

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

カテゴリ

Help Center および File ExchangeResizing and Reshaping Matrices についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by