Question

5.i) What will be the output of the script: for i-1:7 for j- 1:i fprintf(%d, j) end fprintf(\n) % start a new line. end 5 (i) For ax2 + bxc 0, the value of x is given by 2a Write a MATLAB function quadrasol () that will have three inputs ( a,b, and c) and two outputs corresponding to the solutions of the equation. It may be more compact if you defined another variable d for the term inside the square root within your function. Show how you will call the function from the command prompt to obtain the solution for the quadratic x2 -3x +2 0

0 0
Add a comment Improve this question Transcribed image text
Answer #1

Please Note:

As HOMEWORKLIB Answering Guidelines, I have answered the first question.

Please Re-post for the other Questions

Answer)

5.i)

The output of the script:

for i = 1:7

for j=1:i

fprintf('%d',j)

end

fprintf('\n')

end

Program in C:

for(int i =1;i<=7;i++) {

for(int j=1;j<=i;j++){

printf("%d",j);

}

printf("\n");

}

Output:

1   

12

123   

1234

12345   

123456

1234567

Add a comment
Know the answer?
Add Answer to:
5.i) What will be the output of the script: for i-1:7 for j- 1:i fprintf(%d", j)...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • Matlab Question (Matlab Grader) Where indicated at the bottom of the script. write a function, called...

    Matlab Question (Matlab Grader) Where indicated at the bottom of the script. write a function, called isright, that takes three inputs, a, b, and c, and determines whether they are could be the lengths of the sides of a right triangle; the output, y, will be set equal to the following: i). -1 if at least one of the values is not positive. Also, only for this case, have the function print out an error message, which states "At least...

  • Using matlab and if/else statement please! Write a function that determines the real roots of a...

    Using matlab and if/else statement please! Write a function that determines the real roots of a quadratic equation ax2 + bx + c = 0. To calculate the roots of the equation, the function calculates the discriminant D, given by: D = b2-4ac If D> 0, the code should display "The equation has two roots" and print the values on a new line. If D 0, the code should display "The equation has one root.", and print the value on...

  • Problem 4 (7 points): What is the output (printed to command prompt) of the following code...

    Problem 4 (7 points): What is the output (printed to command prompt) of the following code (Exam2Prob4.m)? DO NOT USE MATLAB for solving this problem. ZERO CREDIT if all steps are not shown. You should explain the output of each code as if you are executing the code. (answer 2 points; process, with each step - 8 points) Exam2 Prob4.m clc; clear; close all; p=4; q = 3; r5; (x, y] = user Defined (p, q, r); fprintf('x- $d, y=%d',x,y);...

  • clc,clear N =input('Enter positive number\n'); d=0; x = i; for i= 2:N-1 if (mod(N,i)==0) for j=...

    clc,clear N =input('Enter positive number\n'); d=0; x = i; for i= 2:N-1 if (mod(N,i)==0) for j= i:N if (mod(i,j)==0) d = d+1; fprintf('%d\t \n',i); end    end end How can I determine the Positive PRIME factors only out of this code? What should I debug? (MATLAB)

  • Page 73, as mentioned in the stated question, is provided below 1. Consider a new root-finding...

    Page 73, as mentioned in the stated question, is provided below 1. Consider a new root-finding method for solving f(x) = 0. Successive guesses for the root are generated from the following recurrence formula: Xn+1 = In f(xn) fhen + f(xn)] – F(Xn) (1) Write a user-defined function with the function call: [r, n] = Root fun (f, xl, tol, N) The inputs and outputs are the same as for the user-defined function Newton described on page 73 of Methods....

  • Problem 1 (20 pts) Global variables are declared outside any function and can be accessed by...

    Problem 1 (20 pts) Global variables are declared outside any function and can be accessed by any function in MATLAB. In contrast, local variables are declared inside a function, and can be used only inside that function. In this homework, you will create two global variables containing x and y coordinates of points to be plotted. You will also create a plotting function which will access the global variables. a) Create the function plotFunct with no inputs and no outputs....

  • 8396 5101281 5 8 2 0 1 12 ( 4 2 1 ) ) ) 0000 f-000 0246802 (i) Defining fo-f(zo). Л that the quadratic f(x) and f2 f(x2), where Zo-x1-h and x2-xuth, show 2 , f2 - jo 2h2 2h is the quadratic interpol...

    8396 5101281 5 8 2 0 1 12 ( 4 2 1 ) ) ) 0000 f-000 0246802 (i) Defining fo-f(zo). Л that the quadratic f(x) and f2 f(x2), where Zo-x1-h and x2-xuth, show 2 , f2 - jo 2h2 2h is the quadratic interpolating function for fo, fı and f2 (i.e. show that p(x)-f) 4] (ii) Use the interpolating polynomial p(x) as defined above, with Zo-12, xỉ-1.4 and 22 -1.6 (and fo, fı and f2 given by the table...

  • I only need help on doing number 4 LON-CAPA COurse ConSSOE-First ear-SprirASSGT9 (1)pd softEdge elackboard Conter...

    I only need help on doing number 4 LON-CAPA COurse ConSSOE-First ear-SprirASSGT9 (1)pd softEdge elackboard Conter 4d Metro Boomin No mpstate/Downloads/ASSGT9%20(1) pdf Users/april/AppData/Local/Pac Your task: Design, code, and debug a MATLAB script that: (1) Asks the user (use a nenu) what kind of function (m-file or anonymous function) will be used. If an m-file, have the user enter the filename; if an anonymous function, have the user enter the function (hint: use MATLAB's eval function in your script to appropriately...

  • MATLAB only please I am trying to get my getdatafuntion to work. I am also trying to get all my x...

    MATLAB only please I am trying to get my getdatafuntion to work. I am also trying to get all my x's, y's, and v's to popup in the command window so I can put in any value and it will find the value for me using the equation I put in. function project_9_sjl() % PROJECT_9_SJL project_9_sjl() is the driver function for the program. % %    Name: Scott Lawrence %   Date: 3/27/2019 %   Class: CMPSC 200 %   Description: Determine the optimal...

  • Newton's Method in MATLAB During this module, we are going to use Newton's method to compute...

    Newton's Method in MATLAB During this module, we are going to use Newton's method to compute the root(s) of the function f(x) = x° + 3x² – 2x – 4 Since we need an initial approximation ('guess') of each root to use in Newton's method, let's plot the function f(x) to see many roots there are, and approximately where they lie. Exercise 1 Use MATLAB to create a plot of the function f(x) that clearly shows the locations of its...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT