dividing defined variable by named variable
7 ビュー (過去 30 日間)
古いコメントを表示
everytime i try to divide a defined variable by a calculated variable, it only outputs one number multiple times. What syntax am i missing?
d=1:.2:3;
a=sqrt((d.^2)*(3^2));
Y=d./a
1 件のコメント
Stephen23
2022 年 9 月 28 日
編集済み: Stephen23
2022 年 9 月 28 日
" it only outputs one number multiple times."
Because that is the correct result for your code, which is equivalent to d./(3*d)
"What syntax am i missing?"
Because you did not state the expected output nor what you are trying to achieve, we cannot guess the syntax that is required to achieve an unstated goal.
回答 (2 件)
Image Analyst
2022 年 9 月 28 日
Well yeah. Just look at the numbers:
d = 1 : 0.2 : 3
a = sqrt((d.^2)*(3^2))
Y = d ./ a
They all look right to me. Exactly what output numbers did you expect? Tell me which element of Y it got wrong and should be a different number.
3 件のコメント
Image Analyst
2022 年 9 月 28 日
You can define "a" differently then, like perhaps add noise
d = 1 : 0.2 : 3
a = sqrt((d.^2)*(3^2)) + rand(size(d))
Y = d ./ a
Walter Roberson
2022 年 9 月 28 日
a=sqrt((d.^2)*(3^2))
3^2 is 9 so inside the sqrt() you have 9*d^2. sqrt() of that is sqrt(9)*sqrt(d^2). For positive d that is 3*d
Y = d ./ a
So you have d divided by 3*d. For non-zero d that is going to be 1/3 no matter what the positive value of d is. For negative d you would get -1/3. For 0 you get nan.
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Creating and Concatenating Matrices についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!