dividing defined variable by named variable
Mostrar comentarios más antiguos
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 comentario
" 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.
Respuestas (2)
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 comentarios
Liam Bates
el 28 de Sept. de 2022
Liam Bates
el 28 de Sept. de 2022
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
el 28 de Sept. de 2022
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.
Categorías
Más información sobre Creating and Concatenating Matrices en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!