Question

2. Use the subplot command to make two plots of the function f(x) = (x + 1)(x - 2)(2x – 0.25) - et one graph for 0 < x <3 and

Don't use fplot command. Matlab code. Write out code please, don't make it a screenshot.

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

clc
clear all
close all
format long
subplot(2,1,1);
x=0:0.01:3;
y1=(x+1).*(x-2).*(2*x-0.25)-exp(x);
semilogy(x,y1);
xlabel('X-axis');
ylabel('Y-axis log scaled');
title('Plot of funcion in 0 to 3');
subplot(2,1,2);
x=3:0.01:6;
y1=(x+1).*(x-2).*(2*x-0.25)-exp(x);
semilogy(x,y1);
xlabel('X-axis');
ylabel('Y-axis log scaled');
title('Plot of funcion in 3 to 6');

MATLAB R2018a Figure 1 X Search Documentation Pradeep EDITOR НOME PLOTS APPS Insert fx ile Edit View Insert Iools Desktop Win

Add a comment
Know the answer?
Add Answer to:
Don't use fplot command. Matlab code. Write out code please, don't make it a screenshot. 2....
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 SCRIPT PLEASE Matlab MATH 210 in 2020 Homework Assignment 8- Due 3/25, 11:59PM Each...

       MATLAB SCRIPT PLEASE Matlab MATH 210 in 2020 Homework Assignment 8- Due 3/25, 11:59PM Each plot should have its own figure associated with it. In all questions, give the figure a title, and label the acis. Save your matlab script as drill 10.m Do not use the fplot command. 1. Plot the function f(x) = (x + 5)2 for -5 <<<10. Include a plot title, and label both aris. 2. Use the subplot command to make two plots of...

  • matlab code needed » Take any random image and read it in Matiab using mread command....

    matlab code needed » Take any random image and read it in Matiab using mread command. The image should be 2D that is the Matrix obtained after imread should be of order mxn This will be your xit). Then create a mask (filter), using fspecial command. Use your Matlab hetp to learn uce of fspecial. > > (Hint: you haye to use h fspecial (average, hsize)) - Then use com2 to perforh convolution of x with h. » Then use...

  • Consider a finite length DT sequence of length N -16 described below. 1, 0<n< 2 Use...

    Consider a finite length DT sequence of length N -16 described below. 1, 0<n< 2 Use MATLAB built-in function dftmtx (N), and compute X[k] command and create stem plots for the following: DFT(X[k]. Use subplot (a) x n] vs n; (b) X[k] vs k; (c) angle (X [k) vs k. Label axes of these plots and include title for each of these plots

  • Please use Matlab Code to solve. Show Screenshot of code and output. Create your own data...

    Please use Matlab Code to solve. Show Screenshot of code and output. Create your own data that represents the weight of 30 people.Test the null hypothesis that the data comes from a normal distribution with mean mu = 70 and standard deviation sigma = 8. Hint: use the "test" command in Matlab.

  • Please use matlab, post the code, and dont just write the code by hand. Thank you!...

    Please use matlab, post the code, and dont just write the code by hand. Thank you! 4 [3 points] Use the function f(x on the interval [5, 5] and the 11 points below to find a N-10 Lagrange polynomial, using MATLAB. You will need to write code for and plot the polynomial as a function of x, but you do not have to write the polynomials down by hand 5 0 2 3 4 5 f(x) | 0.0399 | 00623...

  • write a matlab code Write a MATLAB function to check the stability of a digital filter...

    write a matlab code Write a MATLAB function to check the stability of a digital filter described by its coefficients. Syntax: stable (b, a); where b and a are the system's forward and backward coefficient. Hint: The roots() function might be useful. Returned value: None. Operation: Displays either 'Stable' or 'Not Stable' message and plots the z-plane. Test with Case#1: y(n)= 2x (n) +x (n-1) +0.4y (n-1) - 0.6y (n-2) Case#2: y(n)= x(n) +0.5x (n-1) +2x (n-2)- y(n-1) +y (n-2)...

  • PLZ shows you Matlab Code X(t) 2 2 46 1. compute the Fourier Series coefficients, ck...

    PLZ shows you Matlab Code X(t) 2 2 46 1. compute the Fourier Series coefficients, ck for the signal x(t) 2. plot magnitude of c and the phase of ck in separate plots (use subplot command) plot the Fourier Series coefficients for the square wave signal: ck(12/9) sinc(2"k/3)

  • PLEASE USE MATLAB COMMANDS THANK YOU Use Matlab to graph the functions f(x) = 3xsin(3x) and...

    PLEASE USE MATLAB COMMANDS THANK YOU Use Matlab to graph the functions f(x) = 3xsin(3x) and g(x)= 12 - 2x² so that you can read off the point(s) of intersection (if any), accurate up to two decimal places. 1) Write down the Matlab command(s) you used to create the x-vector. 2) Write down the Matlab command(s) you used to produce the vectors containing the f- and g-function values. 3) Write down the Matlab command(s) you used to plot the graphs....

  • Use matlab please. Exercise 2 Use the functions you coded in Exercise 1 to compute the...

    Use matlab please. Exercise 2 Use the functions you coded in Exercise 1 to compute the numerical approximation of the integral .1 cos e 30 To this end, write a Matlab/Octave function function [en,et , es] test-integration() = that returns the following items: em, et, es: row vectors with components the absolute values of the integration errors llref-Inl n=2.3, . . . . 100 obtained with the midpont (vector em), trapezoidal (vector et) and Simpson (vector es) rules. Here, f...

  • i need Matlab code asap Write a program that evaluates the function f(x) = tan’x +...

    i need Matlab code asap Write a program that evaluates the function f(x) = tan’x + x - 2 between -27 and 27 in steps of 1/10 and plots the results. Create a function handle for your function, and use function feval to evaluate your function at the specified points. 2. Write a program that locates the zeros of the function f(x) = cos éx -0.25 between 0 and 27. Use the function fzero to actually locate the zeros of...

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
ADVERTISEMENT