How to Log10 X and Y

3 ビュー (過去 30 日間)
Rachel Trent
Rachel Trent 2020 年 5 月 1 日
コメント済み: Rachel Trent 2020 年 5 月 2 日
I'm trying to log10 x = [ 1 2 3 4] and y = [5 7 9 9]. I got the log10 for x, but for some reason I can't get y. I used y = log10(x). Thank you in advance.
I have x = [ 1 2 3 4 ]
y = [ 5 7 9 9 ]
Im trying to get the log10 for these. How do I do that?
  1 件のコメント
James Tursa
James Tursa 2020 年 5 月 1 日
I don't understand your question. Can you elaborate?

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

採用された回答

Prasad Reddy
Prasad Reddy 2020 年 5 月 1 日
編集済み: darova 2020 年 5 月 1 日
clc
clear all
x=[1 2 3 4]
y=[5 7 9 9]
log10(x)
log10(y)
this code worked well.
Your question is littel bit concusing. It is not clear.
Do you mean that if we apply log10(x) we should get y ??
the valurswhich are stored in y are not the log10(x) values.
observe that y is having two 9's. you cant get the same value for both 3 and 4.
I think this must clear your doubt.if not please specify the question more clearely.
give up thumb if this answer works. Thank you.
  1 件のコメント
Rachel Trent
Rachel Trent 2020 年 5 月 2 日
This was exactly what I was looking for. I just needed to know how to log10 x and y. Thank you!!

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeExponents and Logarithms についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by