[go: up one dir, main page]

Menu

[73c35b]: / anal / lpg_addr.m  Maximize  Restore  History

Download this file

14 lines (10 with data), 331 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
% lpg_addr.m: returns the result memory addresses belonging to a lag profile group.
% GUISDAP v.1.60 96-05-27 Copyright Asko Huuskonen and Markku Lehtinen
%
% function addr=lpg_addr(lpgs)
function addr=lpg_addr(lpgs)
global lpg_ra lpg_nt lpg_ri
addr=[];
for lpg=lpgs
addr=[addr,lpg_ra(lpg)+(0:lpg_nt(lpg)-1)*lpg_ri(lpg)];
end