フィルターのクリア

change a vector of a matrix

1 回表示 (過去 30 日間)
Vanessa
Vanessa 2013 年 6 月 12 日
Hi, I have a function
function survival(Si) where Si is a matrix (mx8)
Inside the function I create a vector 'status (mx1)', at the end I want to change one of the columns of the matrix Si by 'status'. The idea is that the matrix that the function use as 'entry' change, for use it in the next step. thanks

採用された回答

Walter Roberson
Walter Roberson 2013 年 6 月 12 日
function Si = survival(Si)
...
status = [...];
column_to_change = ...; %e.g., 7
Si(:,column_to_change) = status;
end

その他の回答 (1 件)

David Sanchez
David Sanchez 2013 年 6 月 12 日
use the matrix as an output argument too:
function Si = survival(Si)
%your code here, you can change your Si matrix too

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by