https://github.com/ruqihuang/AdjointFmaps
Revision d41efaa1636fb8cc0da8f09d89f4a1cae0172320 authored by ruqihuang on 24 August 2017, 07:39:27 UTC, committed by ruqihuang on 24 August 2017, 07:39:27 UTC
claim that the package is only pre-compiled for Mac
1 parent 702a390
Tip revision: d41efaa1636fb8cc0da8f09d89f4a1cae0172320 authored by ruqihuang on 24 August 2017, 07:39:27 UTC
Update readme
Update readme
Tip revision: d41efaa
dijkstra_to_all.m
function D = dijkstra_to_all(shape, sources)
S = shape.surface;
if(size(sources,2) > size(sources,1))
sources = sources';
end
if(size(sources,2) > 1)
error('sources must be stored in a vector');
end
D = comp_geodesics_to_all(double(S.X), double(S.Y), double(S.Z), ...
double(S.TRIV'), sources, 1);
end

Computing file changes ...