Converting a logic in MATLAB to Excel VBA

Juggler_IN

Active Member
Joined
Nov 19, 2014
Messages
358
Office Version
  1. 2003 or older
Platform
  1. Windows
I am unable to convert the logic of a MATLAB code to VBA.

Any input will be of help. The code is:

Code:
t=0s=3.14
pi=3.14

coeff1 = 1/(2*pi);
coeff2 = 1/(2*s);
coeff3 = pi/s;
                    
u = 0.5 - rand();
out = -u*s;

outNext = out - (coeff1*sin(coeff3*out) + coeff2*out + u) ./ ...
(coeff2*cos(coeff3*out)+coeff2);


indxs = find(abs(outNext - out)>tol);

outPrev = out(indxs);


while ~isempty(indxs)


outNext = outPrev - (coeff1*sin(coeff3*outPrev) + coeff2*outPrev + u(indxs)) ./ ...
(coeff2*cos(coeff3*outPrev)+coeff2);
l = (abs(outNext - outPrev)>tol);
out(indxs(~l)) = outNext(~l);
outPrev = outNext(l);
indxs = indxs(l);


end
                     
out = t + out;
 

Excel Facts

How to show all formulas in Excel?
Press Ctrl+` to show all formulas. Press it again to toggle back to numbers. The grave accent is often under the tilde on US keyboards.
Missed tol value:

Code:
[COLOR=#24292E][FONT=SFMono-Regular]  tol = [/FONT][/COLOR][COLOR=#005CC5][FONT=SFMono-Regular]1e-9[/FONT][/COLOR][COLOR=#24292E][FONT=SFMono-Regular];[/FONT][/COLOR]
 
Upvote 0
Maybe you could explain what the code does.
 
Upvote 0
Random variates with a raised cosine distribution?
 
Upvote 0
I dont think it is the Raised Cosine. It is the general form of Cosine with:

pdf(y) = (1+cos(pi*(y-t)/s))/(2*s); t-s <= y <= t+s; s>0 and
cdf(y) = (pi + pi*(y-t)/s + sin(pi*(y-t)/s))/(2*pi); t-s <= y <= t+s; s>0

[TABLE="class: highlight tab-size js-file-line-container"]
<tbody style="px"box-sizing:" border-box;"=""></tbody>[/TABLE]
 
Last edited:
Upvote 0
Last edited:
Upvote 0

Forum statistics

Threads
1,223,676
Messages
6,173,757
Members
452,534
Latest member
autodiscreet

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top