Respondida
How to plot a contour/shape with a confidence/uncertainty covariance matrix?
Why not attach your data file and post some codes that you have created? This will make our work easier.

más de 6 años hace | 0

Respondida
How can I produce a Heat/Contour map of energy distribution within a vessel
% Start by making the following changes Fs = 1/(max(Ts)-min(Ts)); % Your sampling frequency was infinite, change it to thi...

más de 6 años hace | 0

Respondida
Indexing Results of a For Loop When the Input Comes from a Function
[r_step_cba, v_step_cba] = RK4_single_step(mu, rpf_cba, vpf_cba, h) for i = 0:h:11940 ...

más de 6 años hace | 0

| aceptada

Respondida
Help in coding using Matlab
clear variables close all % 1. Load the data into matlab and extract the Y, Z and C components load data.txt % Ed...

más de 6 años hace | 0

Respondida
the coefficients of the 3rd-order predictor
Hey Ashmed You might find this code useful if you are thoroughly familiar with the literature that you are studying; else thi...

más de 6 años hace | 1

| aceptada

Respondida
the coefficients of the 3rd-order predictor
function [e,w,y,W] = PreDLMS(x,mu,M) % [e,w,y,W] = PreDLMS(x,mu,M): Implements lms for linear prediction % Inputs: ...

más de 6 años hace | 1

Respondida
Why do I receive this error in maximising the log likelihood criterion?
You need to check you your likelihood function, the input variables aren't defined properly. You can fix it like here : func...

más de 6 años hace | 0

Respondida
How to plot harmonic motion in Matlab??
N = 200; phi = pi/4; A = 1; B = 1; t0 = -2; tf = 2; t = t0:(tf-t0)/(N-1):tf; w = pi; x = A*cos(w*t+phi...

más de 6 años hace | 1

| aceptada

Respondida
how can I find y[n]
% write your equation as : y(n)-0.5y(n-1) = x(n)+0x(n-1)+0x(n-2)+0.5x(n-3) % and define the coefficient vectors a and b...

más de 6 años hace | 0

| aceptada

Respondida
Adsorption Modelling - Solving PDE - Axial Dispersion Model
I am using the following papers as a guide: http://www.cellulosechemtechnol.ro/pdf/CCT7-8(2014)/p.717-726.pdf http://www.imr...

más de 6 años hace | 0

Respondida
Adsorption Modelling - Solving PDE - Axial Dispersion Model
An image-

más de 6 años hace | 1

Respondida
Adsorption Modelling - Solving PDE - Axial Dispersion Model
I still have come up with a reasonable solution, but I am making some progress so far. Here is an image that I obtained from us...

más de 6 años hace | 1

Respondida
How do I keep the x-axis the same?
Make sure that your three time vectors have the same length. If you have a time interval between a and b and want the time to ha...

más de 6 años hace | 0