Matlab Homework that im struggling with

2 ビュー (過去 30 日間)
Jacob Brackett
Jacob Brackett 2020 年 3 月 4 日
コメント済み: Jacob Brackett 2020 年 3 月 5 日
OK, this is my homework asignment that I am working on and having trouble getting started. I believe I can write code to solve using cramers rule however, I dont know how to prompt the user to enter the number of equations/unknowns, between 2 and 5. Then Im not sure how to prompt the user again for them to enter the constants and coefficents for each equation. If yall could give me any insight on how to do this I would be very grateful.

回答 (1 件)

Jim Riggs
Jim Riggs 2020 年 3 月 4 日
To prompt a user to enter a value, try:
x = input('Enter the number of equations (from 2 to 5): \n')
  4 件のコメント
John D'Errico
John D'Errico 2020 年 3 月 5 日
@Jacob - If you will allow input like that, then you will need to write custom code that can parse it. I will suggest that task is well beyond your current capabilities, if you don't even know how to use input. Why? Because you will need to write code that can find terms like 4x, or perhaps 3.14y, and recognize there is a missing multiplication in there. Worse, how about an expression like this: 2x + 1e4y = 1.2e-3.
I would strongly suggest you limit your problem, to be able to handle the case where the equations are entered in a simple way as just a numeric vector of coefficients. Learn to walk before you try to run.
Jacob Brackett
Jacob Brackett 2020 年 3 月 5 日
Ok, @John D'Errico how would you suggest doing it. This is my first semester of coding and I'm still learning the basics.

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

カテゴリ

Help Center および File ExchangeCharacters and Strings についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by