Zhukun Wang
Followers: 0 Following: 0
Statistics
14 Questions
0 Answers
RANK
77.174
of 295.569
REPUTATION
0
CONTRIBUTIONS
14 Questions
0 Answers
ANSWER ACCEPTANCE
0.0%
VOTES RECEIVED
0
RANK
of 20.247
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANK
of 154.105
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
Question
How to check entries in a Matrix diagonal by diagonal
n=21; %three states: blipped(2- or some other marker), not blipped (1), empty (0) blipped=2; notblipped=1; empty=0; A=rand...
meer dan 3 jaar ago | 1 answer | 0
1
answerQuestion
lhsdeign for parameters with different value intervals
gNavec=linspace(100,130); gKvec=linspace(12,50); glvec=linspace(0.1,2); VNavec=linspace(55,120); VKvec=linspace(-30,-5); Vl...
meer dan 3 jaar ago | 0 answers | 0
0
answersQuestion
How to use the function lhsdesign in hypercube parameter search
function Math462HW4Q3code X=lhsdesign(7,5,xvector); tspan=[1:1:100]; Cm=1; Vm=1; m=1; n=1; h=1; gNa=100:130; gK=12:50; ...
meer dan 3 jaar ago | 0 answers | 0
0
answersQuestion
Question on distinguish lines in graph
function Math462HW4Q4partbb V=1; k01=1/3; k02=1/2; k21=2/3; k12=3/2; tspan=1:1:10; x1=0; x2=0; y=x1/V; vector=[x1,x2,y...
meer dan 3 jaar ago | 1 answer | 0
1
answerQuestion
Matlab ODE45 function debugging
%Math462 HW3 Q5b fake_data_vals = [86; 86; 117; 120; 130; 135; 169; 179; 224; 230; 242; 234; 244; 245; 270; 27...
meer dan 3 jaar ago | 1 answer | 0
1
answerQuestion
how to make a for loop in an ODE 45
data = [0 86; 1 86; 2 117; 6 120; 7 130; 8 135; 13 169; 16 179; 23 224; 27 230; 29 242; 36 234; 41 244; 50 245; 59 270; 63 271; ...
meer dan 3 jaar ago | 1 answer | 0
1
answerQuestion
Gauss-Seidel Method in Matlab
function [x,info,relres] = myGaussSeidel(A,b,MaxIter,TOL) %Gaussseidel Method n=2; x0=zeros(n,1); x=zeros(n,1); k=1; rel...
meer dan 3 jaar ago | 1 answer | 0
1
answerQuestion
Jacobi Method in calculating solution, number of iterations, and relative residue
N=50; % 50; A=gallery('poisson',N); n=size(A,1); xs=ones(n,1); b=A*xs(:); MaxIter=10*n; TOL=1.e-4; t=cputime; [x,info...
meer dan 3 jaar ago | 1 answer | 0
1
answerQuestion
Question on implementing Jacobi Method
function [x,info,relres] = myJacobi(A,b,MaxIter,TOL) %Jacobi Method A=zeros(n,n); %x0=zeros(n,1); x=zeros(n,1); b=zeros...
meer dan 3 jaar ago | 1 answer | 0
1
answerQuestion
Create a matrix with non zero entries on the diagonal and subdiagonal and zero elsewhere
I am confused on how to generate a 4 by 4 matrix which has ones on the diagonal and zeroes on the lower subdiagonal right beneat...
meer dan 3 jaar ago | 1 answer | 0
1
answerQuestion
Question about ODE45
function Math462hw2Q5partcmodel kG=0.002; kAV=0.004; k0=0.3; k12=1; k21=0.7; T=1500; tspan=0:1:168; %We have to do this f...
bijna 4 jaar ago | 1 answer | 0
1
answerQuestion
Question on how to use Forward Euler to simulate double pendulum
m1=1; m2=1; l1=1; l2=1; g=9.8; dt=0.1; theta1=[pi/8]; theta2=[pi/8]; theta1dot=[0]; theta2dot=[0]; %We can define th...
bijna 4 jaar ago | 1 answer | 0
1
answerQuestion
How to generate double pendulum using ode 45
function Math462hw2Q3parta m1=1; m2=1; l1=1; l2=1; g=9.8; tspan=0:1:100; %theta1initial=pi/8; %theta2initial=pi/8; the...
bijna 4 jaar ago | 1 answer | 0
1
answerQuestion
How to use ODE 45 to generate a SIR model
function Math462hw2Q6parte alpha=1.99; beta=1; gamma=1/7; S=0.99; I=0.01; R=0.1; %tstart=0; %tend=100; y=[S,I,R]; tspa...
bijna 4 jaar ago | 1 answer | 0