augmenting matrix in MATLAB

Please I am trying to estimate a parameter and I want to augment the orginal state matrix(36001X8) with the parameter by adding two more columns of the parameter(to make it 3600X10) so that I can plot my original and estimates on same graph, how do I go about it?

1 件のコメント

David Hill
David Hill 2019 年 8 月 24 日
if the additional parameters are already column vectors (p1 and p2), you should only have to add them onto your orginal matrix.
M(:,9)=p1;
M(:,10)=p2;

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

回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeGraph and Network Algorithms についてさらに検索

質問済み:

2019 年 8 月 24 日

コメント済み:

2019 年 8 月 24 日

Community Treasure Hunt

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

Start Hunting!

Translated by