RvEYoda Posted December 1, 2012 Posted December 1, 2012 Long time since I worked on modding dcs/fc, but back in the day there used to be temp/error.log files which (among other things) listed lua errors if you wrote something wrong in for example export.lua. Does anyone know where these error logs have gone for dcs world? I checked AppData\Local\DCS AppData\Local\TEMP\DCS but no error logs there.. Using DCS world with fc3 beta S = SPARSE(m,n) abbreviates SPARSE([],[],[],m,n,0). This generates the ultimate sparse matrix, an m-by-n all zero matrix. - Matlab help on 'sparse'
sobek Posted December 1, 2012 Posted December 1, 2012 windows_username\saved games\DCS\logs 1 Good, fast, cheap. Choose any two. Come let's eat grandpa! Use punctuation, save lives!
RvEYoda Posted December 1, 2012 Author Posted December 1, 2012 windows_username\saved games\DCS\logs Thank you! :) S = SPARSE(m,n) abbreviates SPARSE([],[],[],m,n,0). This generates the ultimate sparse matrix, an m-by-n all zero matrix. - Matlab help on 'sparse'
sobek Posted December 2, 2012 Posted December 2, 2012 You're welcome. :) LOL@ your sig. What's the difference between sparse() and zeros()? Good, fast, cheap. Choose any two. Come let's eat grandpa! Use punctuation, save lives!
RvEYoda Posted December 2, 2012 Author Posted December 2, 2012 You're welcome. :) LOL@ your sig. What's the difference between sparse() and zeros()? sparse matrices dont actually consume memory until you put some nonzeroes in it. Useful for huge (>1000x1000) diagonal matrices, equation solving etc. essentially just a list of indices and values, instead of a preallocated n by m block. S = SPARSE(m,n) abbreviates SPARSE([],[],[],m,n,0). This generates the ultimate sparse matrix, an m-by-n all zero matrix. - Matlab help on 'sparse'
sobek Posted December 2, 2012 Posted December 2, 2012 sparse matrices dont actually consume memory until you put some nonzeroes in it. Useful for huge (>1000x1000) diagonal matrices, equation solving etc. essentially just a list of indices and values, instead of a preallocated n by m block. I see, thanks. :) Good, fast, cheap. Choose any two. Come let's eat grandpa! Use punctuation, save lives!
Recommended Posts