我在理解如何绕过此任务的概念时遇到困难,有人能帮助我吗?

thtygnil  于 2021-08-20  发布在  Java
关注(0)|答案(0)|浏览(152)

我已经看了大约30分钟了,我找不到一个方法来解决这个问题。
如果数字控制系统的极点位于单位圆内,则认为该系统是稳定的。极点是指控制系统传递函数中分母的根。另一方面,单位圆是复平面中的圆,其中心位于原点,半径为一(1)。如果传递函数的分母为,az^2+bz+c,则在用户输入系数后确定其是否为stalbe。您的程序应该显示根(矩形或极形,取决于您的偏好)和稳定性条件。假设系数是实数。
这是我到目前为止所做的。。。

  1. import java.text.DecimalFormat;
  2. import java.util.Scanner;
  3. public static void main(String[] args) {
  4. // Problem # 1
  5. Scanner scan = new Scanner(System.in);
  6. DecimalFormat df = new DecimalFormat("###.##");
  7. int a,b,c;
  8. double d;
  9. System.out.println("Given the equation: ax^2 + bx + c");
  10. System.out.print("Input value for a: ");
  11. a = scan.nextInt();
  12. System.out.print("Input value for b: ");
  13. b = scan.nextInt();
  14. System.out.print("Input value for c: ");
  15. c = scan.nextInt();
  16. scan.close();
  17. d = ((Math.pow(b, 2))-(4*a*c));
  18. double real = (-b) / (2*a);
  19. double imaginary = Math.sqrt(-d)/(2*a);
  20. System.out.print("The complex conjugates are " + df.format(real) + " + " + df.format(imaginary) +"i");
  21. System.out.print(" and " + df.format(real) + " - " + df.format(imaginary) +"i");
  22. if(d <= 0) {
  23. System.out.println("\nThe Stability condition is stable");
  24. }
  25. else {
  26. System.out.println("\nThe Stability Condition is unstable");
  27. }
  28. int zero=0,neg=0,pos=0;
  29. if (a < 0 ) {
  30. neg = neg + 1;
  31. }
  32. else if (a> 0 ) {
  33. pos = pos + 1;
  34. }
  35. else if (a == 0) {
  36. zero = zero + 1;
  37. }
  38. if ( b < 0 ) {
  39. neg = neg + 1;
  40. }
  41. else if ( b > 0 ) {
  42. pos = pos + 1;
  43. }
  44. else if (b ==0){
  45. zero = zero + 1;
  46. }
  47. if ( c < 0 ) {
  48. neg = neg + 1;
  49. }
  50. else if ( c > 0 ) {
  51. pos = pos + 1;
  52. }
  53. else if (c ==0){
  54. zero = zero + 1;
  55. }
  56. System.out.println("the number of zero is " + zero);
  57. System.out.println("the number of Positive is " + pos);
  58. System.out.println("the number of Negative is " + neg);
  59. }
  60. }

注意:我对这方面还不太熟悉,如果有人能帮助一个新手,那将是一个很大的帮助:))

暂无答案!

目前还没有任何答案,快来回答吧!

相关问题