repo.or.cz
/
wrf-fire-matlab.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
taking computing of the divergence load F outside of hexa
[wrf-fire-matlab.git]
/
util1_jan
/
read_rsparse.m
blob
2b2e4c79eed7eeda002a0adab323521d2a6dc46b
1
function a=read_rsparse(name,num1,num2)
2
% function read_rsparse(name,num1,num2)
3
% read sparse matrix in compressed row format
4
if ~exist('num1','var'),
5
num1=-1;
6
end
7
if ~exist('num2','var'),
8
num2=-1;
9
end
10
a=read_csparse(name,num1,num2)';