Search
About
Datasets
Models
Log In
Sign Up
Log In
Sign Up
Models
:
AlyssaS
/
netics
Like
0
Downloads: 1
Card
Git
Discussions
Diff of
/matlab_source/insulated_diff.m
[000000] ..
[11a160]
Switch to unified view
a
b/matlab_source/insulated_diff.m
1
function [ F ] = insulated_diff( W, b )
2
3
temp = eye(length(W)) - (1-b)*W;
4
F = b*inv(temp);
5
6
end