Multiply matrix column by an equation

2 ビュー (過去 30 日間)
Sabrina Fleming
Sabrina Fleming 2021 年 11 月 10 日
回答済み: Fangjun Jiang 2021 年 11 月 10 日
I used A= readmatrix() to create a very large matrix from data in an excel file and now have:
[x1 z1
x2 z2
x3 z3 ] etc.
I'd like to take all the current "x" values in column 1 and apply the funtion y=ln(1+x) and create a new matrix with:
[y1 z1
y2 z2
y3 z3] etc.
I tried using a for loop, but didn't know how to input the existing x values into the function.
Any advice welcome, please let me know if you'd like more info.

採用された回答

Fangjun Jiang
Fangjun Jiang 2021 年 11 月 10 日
A=[1:3;10:10:30]'
A(:,1)=log(A(:,1)+1)

その他の回答 (0 件)

カテゴリ

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

Community Treasure Hunt

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

Start Hunting!

Translated by