Community Profile

photo

Kayode Odeyemi


Last seen: 2 years ago Active since 2019

Followers: 0   Following: 0

Statistics

  • Thankful Level 2
  • Thankful Level 1

View badges

Feeds

View by

Question


How do I change the latex to equation in MATLAB answers?
How to change the latex I(h)=\frac{1}{4\pi} \int_{0}^{2\pi}\int_{-\frac{\pi}{2}}^{\frac{\pi}{2}}h(\lambda,\theta)\cos{\theta} {...

4 years ago | 1 answer | 0

1

answer

Question


How do I code normalized global errors in Matlab?
If I is defined to be a discrete approximation to the global integral then I(h)=\frac{1}{4\pi} \int_{0}^{2\pi}\int_{-\frac{...

4 years ago | 0 answers | 0

0

answers

Question


How can I save 'H' using Runge-Kutta time-step in a single . mat file each day while the code will be running for six days?
dt=90; % 90 seconds tend=1:6;% for six days time = zeros ((3600/dt)*24*tend,1); %Runge-Kutta time step for nt=1:...

4 years ago | 1 answer | 0

1

answer

Question


how do I plot contour lines on orthographic projection?
H= 163842×4 double - solution; he=H(:,4); lam = linspace(-pi,pi,3901); theta = linspace(-pi/2,pi/2,42...

4 years ago | 0 answers | 1

0

answers

Question


how to numerically integrate to machine precision?
I want to write a MATLAB code for \frac{\partial{gh}}{\partial\theta}=-\left(afu+u^{2}\tan{\theta}\right) [SL: edited to add ...

4 years ago | 0 answers | 0

0

answers

Question


how to write u= exp(1/((x-x_0)(x-x_1))) for x_0<x<x_1 using '@(x) function' in matlab?
u =@(x) vif(x>x0&x<x1,exp(1./((x-x0).*(x-x1))),0) I need a function that can work with the @(x).

4 years ago | 1 answer | 0

1

answer

Question


How to write umax*exp(1./((th-th0).*(th-th1)))/en for th0<th<th1 in matlab?
, , I saw something related to my question uu = @(th) vif(th>ph0&th<ph1,umax*exp(1./((th-ph0).*(th-ph1)))/en,0) but unfor...

4 years ago | 1 answer | 0

1

answer