Forum Discussion
Altera_Forum
Honored Contributor
13 years ago --- Quote Start --- Hello, Is there anyway obtain data from JTAG USB to Matlab? I used signal tap II, I's fine to debug on-chip, but I don't like its graphical display so much. any idea? --- Quote End --- There might be but I find it not necessary since I can readily convert signaltap data(signed) to text file then read that in matlab. In matlab all you need is chop off the header text from signaltap text file then type: data = load('filename.txt'); this creates matrix of all data and so choose your columns e.g. data1 = data(:,3); %all elements of column 3