How do I use my data set in an equation?

2 次查看(过去 30 天)
I have a 4145x6 data set collected by a fNIRS device. I need to use the formula log(Ib/Im). Ib is a mean value of 6 values, so a 1x6 data set, and Im is the 4145x6 data set. How would I solve this equation in matlab.

回答(2 个)

Torsten
Torsten 2024-4-23
编辑:Torsten 2024-4-23
Say lm is 2x6, e.g.
lb = [1 2 3 4 5 6]
lb = 1x6
1 2 3 4 5 6
<mw-icon class=""></mw-icon>
<mw-icon class=""></mw-icon>
lm = [7 8 9 10 11 12;13 14 15 16 17 18]
lm = 2x6
7 8 9 10 11 12 13 14 15 16 17 18
<mw-icon class=""></mw-icon>
<mw-icon class=""></mw-icon>
What would you like to compute ?
[log(1/7) log(2/8) log(3/9) log(4/10) log(5/11) log(6/12);log(1/13) log(2/14) log(3/15) log(4/16) log(5/17) log(6/18)]
ans = 2x6
-1.9459 -1.3863 -1.0986 -0.9163 -0.7885 -0.6931 -2.5649 -1.9459 -1.6094 -1.3863 -1.2238 -1.0986
<mw-icon class=""></mw-icon>
<mw-icon class=""></mw-icon>
?
Then
log(lb./lm)
ans = 2x6
-1.9459 -1.3863 -1.0986 -0.9163 -0.7885 -0.6931 -2.5649 -1.9459 -1.6094 -1.3863 -1.2238 -1.0986
<mw-icon class=""></mw-icon>
<mw-icon class=""></mw-icon>
would work.

Walter Roberson
Walter Roberson 2024-4-23
lb = mean(lm,1);
formula = log(lb./lm);

类别

Help CenterFile Exchange 中查找有关 Standard File Formats 的更多信息

产品


版本

R2024a

Community Treasure Hunt

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

Start Hunting!

Translated by