Dear Math and Physics fans
You have always been so helpful in the past and I was hoping that I could call on your expertise once again.
I want to make a wedge filter in MATLAB so I can determine the orientation of the ellipse of a centered 2D fft.
I tried to make an new image where...
I'm writing a program for simulating the angle distribution of scattered particles from a gold nucleus but I doubt the results. I don't know...But it would be very good if someone check it and give some hints.
I also want to ask should I vary both initial speed and impact parameter in one...
I have a range of sine waves I have obtained in an experiment.
I want to put a measure on the purity of these sine waves - how well the reproduce a theoretical sine wave.
Is there anyway I can analyse the FFT of the sine waves in Matlab and put a measure on the purity of the sine wave...
Hello,
I have just been wondering that given each year we get two new versions of Matlab, for someone like who uses/used Matlab 2001 (or Matlab 7) I am wondering if there's a great reason to move to the recent versions (Matlab 2014a) even when I use only a selected number of toolboxes.
Thanks
This problem was originally a multi objective problem but using scalarization it can be transformed to the following:
Min: -p'*x + u*x'*V*x subject to 1*x=1
-u is the risk aversion index that I wish to vary from .1 to 100
-V is a (4x4) variance covariance matrix
-p is the (4x1) expected...
I have created a contour plot in MATLAB using the following code:
>> NP=40;
>> [RP TP]=meshgrid(linspace(min(RPM),max(RPM),NP),linspace(min(BMEP),max(BMEP),NP));
>> BSFC_IT=griddata(RPM,BMEP,BSFC,RP,TP);
>> NC=12;
>> Fig1=figure;
>> [CT...
So let's say I have 2 matrices A and B. I need to solve 2 eqns involving specific elements of each matrix.
e.g. A(1)+B(2)=4; A(1)-B(2)=2.
Is there any way to do this? My efforts with Fsolve and solve have failed.
Here's what I've done so far:
function F=myfun(A,B)...
I'm trying to plot the evolution of a simple harmonic oscillator using MATLAB but I'm getting non-sense result and I have no idea what's wrong!
Here's my code:
clear
clc
x(1)=0;
v(1)=10;
h=.001;
k=100;
m=.1;
t=[0:h:10];
n=length(t);
for i=2:n
F(i-1)=-k*x(i-1)...
For one of my classes, our project is to write a script that simulates the game of craps. I have no problem with the actual game, but one of the criteria is that after the player wins or loses, we are supposed to prompt them to quit or play again (this is where I'm stuck).
Is there a command...
Hi.
I am currently in a situation where I have a function handle giving as putput an array of doubles. I would like to convert this to a cell array of function handles, each giving a component of the previous array.
The original function handle is produced by a built-in MATLAB function, so...
Hello participants. Can anyone help me in the code of loading wavs... I am getting some error...
Function for the Code is...
function [wavs,fs] = load_wavs(directory)
% Initialize variables
data = 0;
fs = 0;
% Load the wavs
if(nargin < 1),
D = dir;
else
D = dir(directory);
end
for i=2 ...
I'm studying the work of Theo Jansen and want to derive a set of general equations for motion, velocity and acceleration at each point of his linkage mechanism. I've read a general equation can be derived through the use of vector loops but I am having some trouble as my equations have 10...
I am trying to simulate the probability of rejecting a good batch for a probability of \(0.94\) using the Binomial Probability Law.
My two cases are
\[
P[k\geq 95] = \sum_{k = 95}^{100}\binom{100}{k}p^k(1 - p)^{100 - k}
\]
and
\[
P[k\geq 98] = \sum_{k = 98}^{100}\binom{100}{k}p^k(1 - p)^{100 -...
Homework Statement
Smog begins to build up again immediately after a Santa Ana wind passes through the basin. The volumetric flow rate through the basin has dropped to ##1.67*10^{12} \frac{ft^3}{hr}##. Plot the concentration of carbon monoxide in the basin as a function of time for up to 72...
How do I estimate the pdf from a random variable \(X\) where \(X = U_1 - U_2\) and \(U_i\) are uniform random variables?
In the code below, I used unifrnd(-5, 5, 1000, 1) which generated a 1000x1 vector of uniform random number between -5 and 5.
How do I estimate the PDF for X?
rng;
X =...
Hello everyone, I'm new here and new to Matlab. I hope I do place the post in the right place.
First of all, thanks for viewing my post. Please bear with my English. I tried my best to explain everything clear. If you have any question about anything I wrote or spot any fault, please tell...
Homework Statement
hi, i am having some problem with a code in matlab. my code is:
t = 30;
H= 30;
h= 3;
n = H/h;
qqq= 10;
a= 3;
b = .2;
k= 0.04;
Lo= 100;
g= 9.81;
for i = 1:t
q(i) = 0;
for j = 1:n
nl = qqq + (j*h)/(a + b*(j*h));
nlt = nl*(0.0172*log(i) + 1);
q(i) = q(i) +...
Homework Statement
I'm trying to make a theoretical Bode Amplitude plot of the following circuit in Matlab:
The transfer functions is given by
##T=\frac{V_{out}}{V_{in}}=\frac{R_2}{R_2+z_p}##
##z_p=R_p|| j \omega L || \frac{1}{j \omega C} = \frac{R_p}{1+ j R_p (\omega C -...
hello. I have a MATLAB skeleton provided because i want to model a distribution with a circular geometry. all in all, i want the 3d graph of the code to be some type of cylinder. This is the code:
% flat step condition
for ii=1:nHi,
for jj=1:nHj,
if (X(ii)/R_P)<1 &...
HI please help me this could someone verify it for me please find attachement
clc;
clear all;
k=0;
s=0;
N=inf;
for i=1:N
s=s+(1/(k^2+1));
k=k+1;
end
syms x n
a0=1/pi*int(cosh(x),-pi,pi);
an=1/pi*int(cosh(x)*cos(n*x),-pi,pi);
bn=1/pi*int(cosh(x)*sin(n*x),-pi,pi);
fs=0...
I want to solve the following differential equation using MATLAB and thus want to plot between x & y.
dy/dx=(l*siny-b)/(sinx*cos(y-x))
boundary condition:at x=0;y=sine inverse of(b/l);
Homework Statement
I'm trying to make a theoretical Bode plot of a High pass filter (made up of a capacitor and a resistor). The transfer function is:
##T=\frac{V_{out}}{V_{in}}= \frac{R}{R+1/(j\omega C)} = \frac{1}{1-j\omega_0 / \omega}##
With a corner frequency of 5 kHz or in...
This is a part MATLAB and part math question. I know for the shaded region, I would usually do
##A_{shaded} = \int_{inter(2)}^{inter(3)} f_{1}(x) \mathrm{d}x - \int_{inter(2)}^{inter(3)} f_{2}(x) \mathrm{d}x##
However, since it appears they want the function handle to be just one line, am I...
Homework Statement
In this problem, we will demonstrate the Central Limit Theorem by a virtual test that involves
rolling of dice. To this end, you will create a function, with the following declaration line
function [avgDice, histDice] = rollDice(NumDice, NumRolls)
##\bullet## NumDice: the...
Two M-files one contains differential equations and another one to run and plot the graphs. since i am using ode solver, it has two files to run.
THERE ARE 4 MATLAB CODES WITH 4 SEPARATE MATLAB M-FLIES BUT 2 M-FILES TO PRODUCE 3 PLOTS AND ANOTHER 2 M-FILES TO PRODUCE ANOTHER 3 GRAPHS. BUT I...
Homework Statement
Write a line of MATLAB code that uses the cell array A to generate the string 'Cal Golden Bears'Homework Equations
The Attempt at a Solution
A = {'Cal', 'Golden', 'Bears', [5 7], {[1 2 3 4]}}
A =
'Cal' 'Golden' 'Bears' [1x2 double] {1x1 cell}
The...
[b]1. The problem statement.
Create a function in MATLAB for a simulation of a automated robot vacuum to avoid obstacles while cleaning an undisclosed floor plan. the floor plan which will be in the form of a matrix not known beforehand. The robot (represented by a value of 1) can move...
Hello, I have been working on this Truss problem and have not managed to get it right. I have checked my equations over and over and everything seems to check out, but I only get 4/24 on the autograder.
Here is my paper worked out.
Here is my Code. Because I don't like the opposite sign...
Since i am using MATLAB ode23s solver, it contains two MATLAB files . One contain the differential equations and another contains plotting and to run the m-files.
The code are working perfectly. Now i want to know the time step size that is using on the plot. How can i get the output of time...
Homework Statement
I am working on Problem #2 in the attached PDF
Homework Equations
The Attempt at a Solution
When I run this right now, I get an error in my first conditional for if the word is not in the index. How do I say that the word does not exist in the index? Any other...
Hello, I am using MATLAB to simulate a Fraunhofer diffraction pattern for a given aperture, but I have a little question. Hope someone can help.
Sorry I am just a high school student and does not completely understand all mathematic deductions about Fraunhofer Diffraction on Wikipedia. I...
Hi everyone, I have a rather fundamental question about building oscillator wavefunctions numerically. I'm using Matlab. Since it's 1/√(2nn!∏)*exp(-x2/2)*Hn(x), the normalization term tends to zero rapidly. So for very large N (N>=152 in Matlab) it is zero to machine precision! Though asymptotic...
Homework Statement
I am working on Problem #2 in the attached PDF
Homework Equations
The Attempt at a Solution
I am trying to understand what they are saying in (b) as far as creating the double array. Does that mean I concatenate strIn with keyL? Also, how do I remove the last...
Hi, Can someone explain me the division operation in the picture. First for left division we use (.\ ) not only ( \ ) And it is strange that when we divide first column of A by first column of B( here first column of B is 44) how can we find -5.1250 ?
Homework Statement
Hardware redundancy is important in many real-world engineering systems. Specifically, installing
multiple sensors that measure the same quantity provides a level of safety in the event that one
instrument fails during the mission lifetime. You do not want an expensive...
Homework Statement
In this problem, you will write code that computes the Kronecker product of two arrays. Suppose
A is a numeric array of size r-by-c and B is a numeric array of size n-by-m. Then the Kronecker
product of A with B is a numeric array, of dimension rn-by-cm, defined as:Homework...
Homework Statement
Attached imageHomework Equations
The Attempt at a Solution
I am basing my code off a template I found in a textbook for using loops to create an array. If I didn't find this example I don't think I would even know where to begin with this. Here is what I came up with so far...
Homework Statement
(a) Suppose you decide to invest money in a Certificate of Deposit (CD). Write code that assigns
to the variable FinalValue the final value of the CD based on the following variables:
Investment: the initial amount of money invested in the CD,
Rate: the annual...
Homework Statement
Often times, a program accepts input from a user, and needs to check the validity of the input, and
then produce useful and informative error messages if the input is invalid. Suppose that uiVal is a
variable representing the user's input, and that errorCode is an 1-by-0...
Homework Statement
Hello, I am working on problems 6-14 on the attached PDF. Don't be scared off, they are just one line of code each. I got number 6 correct, and I got partial credit on 7 and 8, but I am trying to figure out why it is not right.
Homework Equations
The Attempt at a...
I am trying to solve 3 non-linear system of 3 variables using the Newton-raphson method in matlab. Here are the 3 non-linear equations:
\begin{equation} c[\alpha I+ k_f+k_d+k_ns+k_p(1-q)]-I \alpha =0 \end{equation}
\begin{equation} s[\lambda_b c P_C +\lambda_r (1-q)]- \lambda_b c P_C =0...
Homework Statement
Just a heads up, this is a problem with parts (a) - (o). I am working on (k). I am working on problem 5 in the attached PDF. I will show my code for the other parts. We were told to use N = 5 while writing the code for debugging and testing, but run N = 500 for the real...
I am trying to solve 3 non-linear system of 3 variables using the Newton-raphson method in matlab. Here are the three equations:
\begin{equation} c[\alpha I+ k_f+k_d+k_ns+k_p(1-q)]-I \alpha =0 \end{equation}
\begin{equation} s[\lambda_b c P_C +\lambda_r (1-q)]- \lambda_b c P_C =0 \end{equation}...
Forgive me if this sounds really stupid. I am a new Matlab user, and I have about 200 data sets from various samples in the naming format "varname_sample_daily" and i wish to remove the "daily" portion of it from the variable name through an automated process (i.e change all file names to just...
Homework Statement
Let sentence1, string1, and string2 be three variables whose values are character strings.
Using only the MATLAB function strfind and array concatenation, write code that will replace
the first occurrence of string1 in sentence1 with string2, assigning the result to...
Homework Statement
Homework Equations
The Attempt at a Solution
Hello,
I am having some confusion over the notation used in matlab. I don't really know what they mean
A = [1:3; 4:6; 7:9]
A =
1 2 3
4 5 6
7 8 9
A(1:2, 1:2)
ans =
1 2...