Matlab Homework that im struggling with

2 visualizaciones (últimos 30 días)
Jacob Brackett
Jacob Brackett el 4 de Mzo. de 2020
Comentada: Jacob Brackett el 5 de Mzo. de 2020
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.

Respuestas (1)

Jim Riggs
Jim Riggs el 4 de Mzo. de 2020
To prompt a user to enter a value, try:
x = input('Enter the number of equations (from 2 to 5): \n')
  4 comentarios
John D'Errico
John D'Errico el 5 de Mzo. de 2020
@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 el 5 de Mzo. de 2020
Ok, @John D'Errico how would you suggest doing it. This is my first semester of coding and I'm still learning the basics.

Iniciar sesión para comentar.

Categorías

Más información sobre Characters and Strings en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by