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

Browse F

Alphabetical listing with fast deep pagination.
30003 items • Page 600 / 601

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
function [color] = tempToColor(temp) % This function turns a temperature into %
function [color] = tempToColor(temp) % This function turns a temperature into % different colors based on that temp. persistent map if isempty(map)     map = __ ; end end % this i…
function [df] = numericalDerivative(x,f,type); n = length(x); h = x(2)- x(1); if
function [df] = numericalDerivative(x,f,type); n = length(x); h = x(2)- x(1); if strcmp(type, 'FL')                     % Forward Difference     for i = 1:n-1         df(i) = (f(i…
function [energy, fx, fy] = vanderWaals(x, y) eps4 = 0.2824 * 4.0; rmin = 3.361;
function [energy, fx, fy] = vanderWaals(x, y) eps4 = 0.2824 * 4.0; rmin = 3.361; rmin6 = rmin^6; rmin12 = rmin^12; nAtoms = length(x); % Zero out energy. energy = 0; % Zero out fo…
function [fs,nf] =prime_factors_sp(v) %written by...... %this program will find
function [fs,nf] =prime_factors_sp(v) %written by...... %this program will find prime factors v=700 lf=round(v/2),tf=1;fn=1,nf(fn)=0,flag=0, while tf<lf & v~=1 tf=tf+1 t=v/…
function [fx,ea,iter] = IterMeth(x,es,maxit) % Maclaurin series of exponential f
function [fx,ea,iter] = IterMeth(x,es,maxit) % Maclaurin series of exponential function % [fx,ea,iter] = IterMeth(x,es,maxit) % input: % x = value at which series evaluated % es =…
function [odd even] = OddEvenlnd(b) %replace the line below with code to assign
function [odd even] = OddEvenlnd(b) %replace the line below with code to assign to variable odd the contents in the odd indices of input variable b b = [8 -3 0 7 -6 -3 1 8 7 2]; o…
function [outputs] fit disks(inputs) Initialize required arrays/data uhile (stop
function [outputs] fit disks(inputs) Initialize required arrays/data uhile (stopping criterion) . Use randi() function to generate a circle with randon radius and randon coordinat…
function [outputs] function_name (inputs) % Name % Date % Function description %
function [outputs] function_name (inputs) % Name % Date % Function description %Description of inputs, including units % Description of outputs,including units % Any test cases yo…
function [terms, approx] = approx_sin(x , thereshold) terms = 0; real = sin(x);
function [terms, approx] = approx_sin(x , thereshold) terms = 0; real = sin(x); y=0; while abs((real - y)/ real) ~= thereshold for i = 1:10 y=(-1)^(i+1) * x.^(2*i-1)/ factorial(2*…
function [trap,h ] = trapezoidrule(fun,a,b,N); format long h =(b-a)/N; trap = (f
function [trap,h ] = trapezoidrule(fun,a,b,N); format long h =(b-a)/N; trap = (fun(a)+fun(b))/2; x = a + h.*(1:N-1); trap = trap + sum(fun(x)); trap = h*trap; this function is giv…
function [x,k] = newtons(f,x,tol,nmax) % % function [x,k] = newtons(f,x,tol,nmax
function [x,k] = newtons(f,x,tol,nmax) % % function [x,k] = newtons(f,x,tol,nmax) % % This function returns in x a column vector x_k such that % || x_k - x_{k-1} || < tol (1 + …
function [x,y,y0] = trough_create( Fun,EndPoint); x=linspace(0,EndPoint,64); y=f
function [x,y,y0] = trough_create( Fun,EndPoint); x=linspace(0,EndPoint,64); y=feval(Fun,x); y0=y(1)*ones(size(x)); this code is not working n this exercise, you will create a fun…
function [x] = example53(xinitial) % example53.m: 3-position synthesis for 4-bar
function [x] = example53(xinitial) % example53.m: 3-position synthesis for 4-bar linkage % for the specifications in problem 5-3 in the textbook    % Input: % xinitial (optional) …
function [y] = NewtonPoly(xd,yd,x) % function [y] = NewtonPoly(xd,yd,x) % This f
function [y] = NewtonPoly(xd,yd,x) % function [y] = NewtonPoly(xd,yd,x) % This function returns the divided differences % This function returns y=P(x), where P is the polynomial w…
function by the 1) A radioactive substance decays in such a way that the amount
function by the 1) A radioactive substance decays in such a way that the amount of mass remaining after t days is given m()-13e 001s where mt) is measured in kilograms. (6 points)…
function called MinMax ( ) is used to determine the smallest andlargest valued e
function called MinMax ( ) is used to determine the smallest andlargest valued elements given three floating point variables. Anexample of how it is called is shown below: void ma…
function dataAnalysis Type function dataAnalysis in the box. Do not include PHP
function dataAnalysis Type function dataAnalysis in the box. Do not include PHP tags: LANGUAGE TO USE PHP INSTRUCTIONS Write a function named "dataAnalysis" that accepts 3 paramet…
function f = myfunc(x,a,b) f = (x-a).^2 + b; Please supply the code. Thank you!
function f = myfunc(x,a,b) f = (x-a).^2 + b; Please supply the code. Thank you! In this exercise you will be using fminsearch and function handles to find the minimum value of a f…
function getParentwithclass (doc, className) I/ finish this function so // the a
function getParentwithclass (doc, className) I/ finish this function so // the asserts don't fail let parentTrap // test data foo: bar class: com.trivir.top', parent: ( foo: "baz,…
function md ( nd, np, step_num, dt ) %******************************************
function md ( nd, np, step_num, dt ) %*****************************************************************************80 % %% MD is the main program for the molecular dynamics simula…
function md ( nd, np, step_num, dt ) %******************************************
function md ( nd, np, step_num, dt ) %*****************************************************************************80 % %% MD is the main program for the molecular dynamics simula…
function md ( nd, np, step_num, dt ) %******************************************
function md ( nd, np, step_num, dt ) %*****************************************************************************80 % %% MD is the main program for the molecular dynamics simula…
function name: schrodingersCat Need the MATLAB code for this one! Much appreciat
function name: schrodingersCat Need the MATLAB code for this one! Much appreciated Function Name: schrodingersCat Inputs: 1. (struct) A MxN structure array 2. (double) A 1x2 vecto…
function newtondd(x,y) % Newton divided difference disp(\' Newton divided differ
function newtondd(x,y) % Newton divided difference disp(' Newton divided difference') disp('______________________________________________________________________') disp(' x y f[,…
function of choanocytes LABOMED POST,LAB QUESTIONS Porifera, Ctesophora, Cnidari
function of choanocytes LABOMED POST,LAB QUESTIONS Porifera, Ctesophora, Cnidaria 1. Sponges are composed of several types of cells. What in the function of the Name Lab day &…
function of each line of following script :-- 1) The following shell script illu
function of each line of following script :-- 1) The following shell script illustrates the use of the read and echo commands. Enter it using vi the file should be named mycat. Se…
function of time for each runner. mwee runners compete in a 10o meter hurdle rac
function of time for each runner. mwee runners compete in a 10o meter hurdle race. The graph below depicts the dstance run as a who won the race? Did each runner finish the race? …
function out = weighted(ha, qa, ea) % place the code for the weighetd sub-funcit
function out = weighted(ha, qa, ea) % place the code for the weighetd sub-funciton here end %--------------------------------- function out = finalGrade(in) % place your code for …
function primarily as sources of chemical energy, or for energy storage, such as
function primarily as sources of chemical energy, or for energy storage, such as starch function primarily to transmit hereditary information in organisms composed of chains of nu…
function res = goo(x,y) i = 1; j=1; res=[ ]; while i
function res = goo(x,y) i = 1; j=1; res=[ ]; while i<=length(x) & j<=length(y) a = x(i); b=y(j); if a<b res=[res, a]; i = i+1; elseif a>b res=[res, b]; j=j+1; else…
function reverseDigits prints the digits of a number in reverse order. For examp
function reverseDigits prints the digits of a number in reverse order. For example, for 12345 it prints 54321 and for 287 it prints 782. The function numDigits finds the number of…
function s = eigenvalues(A, Nit, epsilon) % function that computes the eigenvalu
function s = eigenvalues(A, Nit, epsilon) % function that computes the eigenvalues of a matrix A using the QR % iteration algorithm with a maximum of Nit iterations or until a trh…
function sortedarray=loc_arraySort(array) sortedarray={}; while ~isempty(array)
function sortedarray=loc_arraySort(array) sortedarray={}; while ~isempty(array) [m,pos]=loc_findSmallest(array); sortedarray=[sortedarray,m]; array=[array(1:pos-1) array(pos+1:end…
function standing_wave clc; Vo_plus=1; f = figure(1); set(f,\'Color\',[0.941 0.9
function standing_wave clc; Vo_plus=1; f = figure(1); set(f,'Color',[0.941 0.941 0.941]) ZL_real=50; ZL_imag=0; ZL=ZL_real+ZL_imag*1j; Zo=50; gamma=(ZL-Zo)/(ZL+Zo); mag_gamma=abs(…
function start() { var theArray = [0,0,0,0,0,0,0,0,0,0]; var isduplicate = false
function start() { var theArray = [0,0,0,0,0,0,0,0,0,0]; var isduplicate = false ; var input; var strList;    for ( var i = 0; i < theArray.length; ++i ) {    input = parseInt(…
function that Search for a given number. If the number is available, then your p
function that Search for a given number. If the number is available, then your program print that number and specify its position in the linked list. If the number not found, your…
function write_file(data,filename) % % WRITE_FILE writes data to an output file
function write_file(data,filename) % % WRITE_FILE writes data to an output file % % WRITE_DATA(DATA,FILENAME) writes data stored in the two dimensional % array DATA to a file with…
function y - tridiag( a, b, c, f ) % Solve the n x n tridiagonal system for y: b
function y - tridiag( a, b, c, f ) % Solve the n x n tridiagonal system for y: b (2) a(2) c (2) 1 Y(2)£ (2) b(3) a (3) c(3) b (n-1) a(n-1) c (n-1) y(n-1) ] [ f(n-1) ] b (n) a (n) …
functionExample.c #include #include #include #in
functionExample.c #include <stdio.h> #include <stdlib.h> #include <string.h> #include <math.h> int main () { void printHeading () { printf("Add/Sub demo: "…
function[]=bisectionexam1(xlower,xupper) xl=xlower; xu=xupper; if xl >0 && xl
function[]=bisectionexam1(xlower,xupper) xl=xlower; xu=xupper; if xl >0 && xl<5 M=@(x)-10*(x-0)^2+57*x; elseif xr >0 && xr<5 M=@(x)-10*(x-0)^2+57*x; el…
functional magnetic resonance imaging (fMRI) is a technology that alllows resear
functional magnetic resonance imaging (fMRI) is a technology that alllows researrcherss to seee which areass of the brainn are receeiving the most blood floww whenn a subject is p…
functions and parameter passing only no Struck Write a c++ program which uses ap
functions and parameter passing only no Struck Write a c++ program which uses appropriate functions and parameter passing that will perform the folowing tasks: Write a c++ program…
functions.js Please write these functions by Javascript A) Write a function name
functions.js Please write these functions by Javascript A) Write a function named isWhiteSpace() that accepts a character and returns true if it is a white space, false otherwise.…
fundamental accoun Exam Chapters 12.34 Pa a Announcements-Blackt × https://newco
fundamental accoun Exam Chapters 12.34 Pa a Announcements-Blackt × https://newconnect.mheduc connect html pters 12.3,.4 Part 1 Saved Use the information in the adjusted trial bala…
fundamentals of algorithmics.pdf (page 200 of 530) Q Search Protiom 8.24. For he
fundamentals of algorithmics.pdf (page 200 of 530) Q Search Protiom 8.24. For heapsort, what are the best and the worst initial arrangements of the elements to be sorted, as far a…
fundamentals of cor fundamentals of cor fundamentals of cor fundamentals of cor
fundamentals of cor fundamentals of cor fundamentals of cor fundamentals of cor fundamentals of cor fundamentals of cor fundamentals of cor fundamentals of cor Chapter 26 The Bird…
fundamentals of cost accounting fundamentals of cost accounting fundamentals of
fundamentals of cost accounting fundamentals of cost accounting fundamentals of cost accounting xpelises buus for a typical month in the coming year. Prepare 44. Budgeted Purchase…
fundamentals of ph In the figure below, particles 1 and 2 of charge q_1 = q_2 =
fundamentals of ph In the figure below, particles 1 and 2 of charge q_1 = q_2 = +4.80 times 10^-19 C are on a y axis at distance d = 14.0 cm from the origin. Particle 3 of charge …
fusion & delay. Fill in the blanks using the appropriate reaction type(fusion, f
fusion & delay. Fill in the blanks using the appropriate reaction type(fusion, fission, or decay)____________does not produce energy at a high enough rate to be useful for pow…
future management.he CRITICAL THINKING ACTIVITY Have We Spoiled Customers? lain
future management.he CRITICAL THINKING ACTIVITY Have We Spoiled Customers? lain the trends that are arecting the future of qualit "If you want to understand how the worldwide qual…