Hi, I have set of values for x (x = 1:10) and I have a equation y = x^(1/2)/x, how can i get and display an array of values of y from the x's ?

4 ビュー (過去 30 日間)
Gurinder Punni
Gurinder Punni 2020 年 1 月 31 日
コメント済み: ME 2020 年 2 月 3 日
All i get is one number, when i should be getting a array of y values.
  2 件のコメント
Geoff Hayes
Geoff Hayes 2020 年 1 月 31 日
Gurinder - please show your code that you have written so that we can explain why you are getting only one number when it should be an array.
Gurinder Punni
Gurinder Punni 2020 年 1 月 31 日
x = 1:10;
y = x.^(1/2)./x
fprintf(' %.2f \n', y)
this is my code

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

回答 (1 件)

ME
ME 2020 年 1 月 31 日
I don't know how you've got one number but I think you should be using:
x = 1:10
y = x.^(1/2)./x
  3 件のコメント
ME
ME 2020 年 2 月 3 日
As Star Strider says, thius is the difference between array and matrix operations - i.e. do you want the operation to perform as if your inputs are matrices or not.
If you starts with
A=[2 2 2;2 2 2;2 2 2]
B=[3 3 3;3 3 3;3 3 3]
then A*B will perform a matrix multiplication and give:
A*B
ans =
18 18 18
18 18 18
18 18 18
whereas A.*B will do an array operation and calculate element-wise to give:
A.*B
ans =
6 6 6
6 6 6
6 6 6
Can I also please request that if this answer was of help to you that you accept my answer.

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

カテゴリ

Help Center および File ExchangeMatrix Indexing についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by