Doing calculation across columns
古いコメントを表示
Hi there. I have a 4 column by 500 row matrix. How would I add a fifth column that calculates
, where x is the corresponding value in the second column across the same row.
Thanks!
採用された回答
その他の回答 (1 件)
JULIEN BARBAUD
2019 年 4 月 22 日
編集済み: JULIEN BARBAUD
2019 年 4 月 22 日
I think that if you call your input matrix A, and the final result B, then this:
f=@(x) exp( (-(x-75)/2).^2 )
B=[A f(A(:,2))];
should do the trick
EDIT: oops, madhan was quicker
カテゴリ
ヘルプ センター および File Exchange で Matrix Indexing についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!