. Find a MATLAB built in function that is used to find the lowest common denominator of fractions.

17 vues (au cours des 30 derniers jours)
Hello, I new to Matlab and I need help with this one problem.
"Find a MATLAB built in function that is used to find the lowest common denominator of fractions. Then use that function to show that the lowest common denominator of (hint, your input and solution will only contain one denominator values.'
  4 commentaires
Walter Roberson
Walter Roberson le 23 Août 2019
The first of those. builtin() has some fairly specific uses. I have rarely had need for it.
David Durost
David Durost le 23 Août 2019
Okay, I 've tried
x=(1/4);
y=(1/10);
L=lcd(x,y);
and
L=lcd(4,10);
built in(function,4,10);
I would really appericate help with the syntax?

Connectez-vous pour commenter.

Réponses (3)

David Durost
David Durost le 23 Août 2019
I would say thanks however, 'com=1cm(d1,d2); is a Unexpected MATLAB expression. I don't appericate the concending remark of how easy this code is. It may be easy for you but not everyone can be a genious like you.
  3 commentaires
Walter Roberson
Walter Roberson le 23 Août 2019
lcm(4,10) is 20. What do you get when you multiply 1/4 by 20? How many 20'th is 1/4 ? What do you get when you multiply 1/10 by 20? How many 20'th is 1/10 ?
Walter Roberson
Walter Roberson le 23 Août 2019
Be sure to distinguish between 'l' (lower-case L) and '1' (digit for the number One)

Connectez-vous pour commenter.


Walter Roberson
Walter Roberson le 23 Août 2019
[n1, d1] = rat(1/4);
[n2, d2] = rat(1/10);
com = lcm(d1, d2);
Now that you have the least common multple of the denominators, you can calculate the equivalent fractions. The code is quite easy, but I will not provide it as you are obviously working on an assignment.

Cate Wallace
Cate Wallace le 24 Fév 2021
lcm(d1,d2)
Hope this helps!

Catégories

En savoir plus sur Descriptive Statistics dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by