This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* To start I would make sure the JQuery func print outs the height | |
*/ | |
var result = document.getElementById('result'); | |
$("#a").click(function () { | |
var msg = $(this).height() | |
result.appendChild( document.createTextNode(msg) ) | |
}) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
% Test between loop based and vectorized | |
% Forward Operators. | |
% Note that dimensions are in G(z,x,y) form as | |
% per UBC inversion group spec. | |
% Set up dimensions | |
N = 6:2:30; | |
% Outer Test loop | |
for tt = 1:length(N) |
NewerOlder