Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Browse M

Alphabetical listing with fast deep pagination.
30746 items • Page 32 / 615

All 0-9 A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
MATLAB User Defined Functions please me through my HW because i\'m not sure with
MATLAB User Defined Functions please me through my HW because i'm not sure with my answers: These are the questions: 1. Anonymous functions can show up in the workspace window as …
MATLAB Using for loop or while loop write a code (script file named sc3 or sc34
MATLAB Using for loop or while loop write a code (script file named sc3or sc34if you use it for both problems 3 and 4) to find the summation S. S = 1+ 1/2 + 1/2^2 + 1/2^3 + 1/2^4 …
MATLAB Write a MATLAB program (script) to multiply two matrices together. Do not
MATLAB Write a MATLAB program (script) to multiply two matrices together. Do not use the MATLAB matrix multiplication function, A*B. Make the program general so that it will work …
MATLAB Write a code bisect.m that implements the bisection method for finding a
MATLAB Write a code bisect.m that implements the bisection method for finding a root of F(x) = 0 in an interval [a , b] to a given accuracy. ? The code should accept inputs:   a ,…
MATLAB Write a function called June2015 that returns a cell array of dimensions
MATLAB Write a function called June2015 that returns a cell array of dimensions 30-by-3, whose rows correspond to the days of June, 2015. The three elements of each row must be se…
MATLAB Write a function called analyzeText that accepts a string as input and (1
MATLAB Write a function called analyzeText that accepts a string as input and (1) counts the number of words; (2) identifies the length of the longest word; and (3) identifies the…
MATLAB Write a function called queen_check that takes an 8-by-8 logical array ca
MATLAB Write a function called queen_check that takes an 8-by-8 logical array called board as input. The variable board represents a chessboard where a true element means that the…
MATLAB Write a function called roman that takes a string representing an integer
MATLAB Write a function called roman that takes a string representing an integer between 1 and 20 inclusive using Roman numerals and returns the Arabic equivalent as a number of t…
MATLAB Write a function that calculates the determinant of a matrix. You should
MATLAB Write a function that calculates the determinant of a matrix. You should continue the Gauss Elimination down the diagonal to the last row. Count the number of times you swi…
MATLAB Write a function that takes no arguments and returns 2 variables, mpg and
MATLAB Write a function that takes no arguments and returns 2 variables, mpg and car_model. The function will read the file ‘porsche.xlsx’ and will get ONLY the miles per gallon d…
MATLAB Write a function that translates a string of English words to a string of
MATLAB Write a function that translates a string of English words to a string of Pig Latin words. >> pig_latin('pig latin in matlab') ans = igpay atinlay inay atlabmay >&…
MATLAB Write a function that will accept a file name and two words. The function
MATLAB Write a function that will accept a file name and two words. The function will open the file and read it one line at a time. If the line contains the first word passed to t…
MATLAB Write a function that will accept a matrix and return a matrix. The funct
MATLAB Write a function that will accept a matrix and return a matrix. The function should take the passed matrix and using Gauss Elimination put zeros in the first column of the …
MATLAB Write a function that will accept any square matrix as an input, the func
MATLAB Write a function that will accept any square matrix as an input, the function will return a number as described below. Inside the function utilize nested loops (either nest…
MATLAB Write a script lumin that will calculate and print the luminosity L of a
MATLAB Write a script lumin that will calculate and print the luminosity L of a star in Watts. The luminosity L is given by L = 4 pi d^2 b where d is the distance from the sun in …
MATLAB Write a script that graphs the required things for each exercise in order
MATLAB Write a script that graphs the required things for each exercise in order. Use a PAUSE command to stop after each exercise. When a key is pressed (after the pause) have all…
MATLAB Write a script to read an Excel file. The file contains 2 sheets with dat
MATLAB Write a script to read an Excel file. The file contains 2 sheets with data. The spreadsheet contains time and corresponding temperature for Day 1 and Day 2. We want to plot…
MATLAB Write a well-commented function program for the function x^2e^-x^2, using
MATLAB Write a well-commented function program for the function x^2e^-x^2, using entry-wise operations (such as . * and . degree) To get e^x use exp(x). Plot the function on [-5, …
MATLAB Write the proper \'display header\' for each part. Give a short comment i
MATLAB Write the proper 'display header' for each part. Give a short comment in front of each line as needed. Final_value= 30, row_vec1=[20:8:30], row_vec2 = linspace(2, 56, 2), m…
MATLAB You were just hired by a bank in the area to fix a buggy program written
MATLAB You were just hired by a bank in the area to fix a buggy program written by a since fired programmer. This function is supposed to do the following: *Receive a method (with…
MATLAB Your task is to write a function that will show the rotational plane of t
MATLAB Your task is to write a function that will show the rotational plane of the wind turbine blades. The function you are writing is called CalculateBladeRotation. A call for t…
MATLAB a) You design a simple program that finds the volume of a cube. It takes
MATLAB a) You design a simple program that finds the volume of a cube. It takes two inputs--a dimension and a string input that allows for two modes: SI and English unit systems. …
MATLAB assigment Write a function (words.m) that takes as input the filenames of
MATLAB assigment Write a function (words.m) that takes as input the filenames of an input text file and output text file and writes the list of unique words found in the input tex…
MATLAB assignment. I have no idea where to start. Please help. When a customer v
MATLAB assignment. I have no idea where to start. Please help. When a customer visits a shopping mall, a fashion expert system (FES) takes a picture of the customer and obtains hi…
MATLAB can represent a data array of more than 3 dimensions. The name of a progr
MATLAB can represent a data array of more than 3 dimensions. The name of a program file must be the same as the defined main function's name in the program. If it is different, th…
MATLAB clc, clear x = -2*pi:pi/8:2*pi; y = sin(x); % replace 3 points with \"Not
MATLAB clc, clear x = -2*pi:pi/8:2*pi; y = sin(x); % replace 3 points with "Not A Number (NaN)" y(10) = NaN; y(15) = NaN; y(4) = NaN; a.) Matlab has a function called isnan which …
MATLAB code COGS 104 Assignment 8: The Game Life Clear all variables Set the (sq
MATLAB code COGS 104 Assignment 8: The Game Life Clear all variables Set the (square) grid dimensions to 50, and call it n. Make a nXn matrix, called GRID, with a .6 probability o…
MATLAB code Exercise 1 (25 pts) In this problem, you will be writing a MATLAB sc
MATLAB code Exercise 1 (25 pts) In this problem, you will be writing a MATLAB script that will compute and display a student's grade in a course. The student (user) will have to i…
MATLAB code The surface area S of a ring in the shape of a torus with an inner r
MATLAB code The surface area S of a ring in the shape of a torus with an inner radius r and diameter d is given by: 5 = pi^2(2r + d)d. The ring is to be plated with a thin layer o…
MATLAB code for Simpson\'s Rule. Please help fix my code. I am trying to use the
MATLAB code for Simpson's Rule. Please help fix my code. I am trying to use the example to verify my code, but my code is wrong. clc clear all close all %Equation = input('Enter F…
MATLAB code help, The following is my code beta=4.08858; M=36; n=0:M; wc=0.2*pi;
MATLAB code help, The following is my code beta=4.08858; M=36; n=0:M; wc=0.2*pi; I0=besseli(0,beta); betaMod=beta.*sqrt(1-(2.*n./M-1).^2); wn=besseli(0,betaMod)./I0; hd=sin(wc.*(n…
MATLAB code please 2\" (60%) In the same parade there was a marching band consis
MATLAB code please 2" (60%) In the same parade there was a marching band consisted of males and females. The band was arranged in n rows and m columns. The gender distribution of …
MATLAB code please type Problem-4: strings, Encryption Words can be shifted usin
MATLAB code please type Problem-4: strings, Encryption Words can be shifted using the functions char and double. For example, one can convert from uppercase to lowercase by adding…
MATLAB code, anything helps! MATLAB code, anything helps! 2. Use the linspace co
MATLAB code, anything helps! MATLAB code, anything helps! 2. Use the linspace command or the colon operator : to create a vector t with 91 elements: 1, 1.1, 1.2,..., 10 and define…
MATLAB code. Please be commented and clean. I DO give thumbs up for correct work
MATLAB code. Please be commented and clean. I DO give thumbs up for correct work. Thank you! Write a general code (scr3) to generate generally n x m positive integer matrix with n…
MATLAB code. Please help me with right the code for Part B, when the input is pa
MATLAB code. Please help me with right the code for Part B, when the input is passed through the following function: y = e^Squareroot 56x + 3.21 + 4x + 0.2 x^2 evaluate the functi…
MATLAB code/ 1- Write a vector of normally distributed random variable X, the me
MATLAB code/ 1- Write a vector of normally distributed random variable X, the mean mX = 15. the standard deviation = 20% of the mean. 2- Using simulated vectors, find probability …
MATLAB code: Write a script let to play a simple number guessing game as follows
MATLAB code: Write a script let to play a simple number guessing game as follows. The script should generate a random integer in the range 1, 2, 3, . . . , 14, 15. It should provi…
MATLAB code:::::: The area S of a triangle ABC can be calculated by: S = 1/2 |AB
MATLAB code:::::: The area S of a triangle ABC can be calculated by: S = 1/2 |AB times AC|, where AB is the vector from point A to point B and AC is the vector from point A to poi…
MATLAB coding, MUST BE; -user-defined Function eg. (res, tol) = Function_name()
MATLAB coding, MUST BE; -user-defined Function eg. (res, tol) = Function_name() -save user inputs eg. Band1 = input() -making a graphical user interface(GUI) Display options to us…
MATLAB computational tool MATLAB of course much more powerful than this and is a
MATLAB computational tool MATLAB of course much more powerful than this and is a de facto standard inthe design implementati many ed technological appli particularl signal Our ini…
MATLAB conv functiorn Let f(n)- u(n) - u(n -5) g(n) = r(n)--2 r(n-5) + r(n-10) w
MATLAB conv functiorn Let f(n)- u(n) - u(n -5) g(n) = r(n)--2 r(n-5) + r(n-10) where r(n) := n a(n) In MATLAB, use theconv function to compute the following convolutions. Use the …
MATLAB creating an m file , show m file for Problem 3.5 Problem 3.5 Note : When
MATLAB creating an m file , show m file for Problem 3.5 Problem 3.5 Note : When posting please check the posting in case of errors in code Thank you The sine function can be evalu…
MATLAB does not have derivatives built in so let\'s build our own numerical firs
MATLAB does not have derivatives built in so let's build our own numerical first and second lerivative functions. Write a MATLAB function called LastNamemyderivs that takes as inp…
MATLAB expert needed! We want lo conduct a breakeven analysis for a wooden baseb
MATLAB expert needed! We want lo conduct a breakeven analysis for a wooden baseball bat manufacturer who is interested in diversifying their product line. As a reminder breakeven …
MATLAB for Engineers HELP!! Please help with Part A). I have the code below but
MATLAB for Engineers HELP!! Please help with Part A). I have the code below but I keep getting an error %PART A clc; clear all; pwf= [3865.6, 2991.1, 1770.8]; qo=[988.2, 2167.2, 3…
MATLAB function M-files HIGH POINTS Write a MATLAB function M-file named isdiv9
MATLAB function M-files HIGH POINTS Write a MATLAB function M-file named isdiv9 to receive a row array of numbers as input, determine which are divisible by 9, then create and ret…
MATLAB function num_laplace () that numerically computes the Laplace transform o
MATLAB function num_laplace () that numerically computes the Laplace transform of a continuous time signal The function num_laplace () takes as inputs the following: one continuou…
MATLAB has multiple built-in datasets that could be used for data processing and
MATLAB has multiple built-in datasets that could be used for data processing and analysis. One of those datasets is "hospital.mat" which contains simulated hospital data. Run the …
MATLAB help Solution function words = allwords(str,sepchars) if ~isvector(str) e
MATLAB help