mat

Moving Annual Total SSAS

I have a cube and I want to create a MAT column. This column is then expected to show up in the same way as a regular metric would. How do I create a column that is a Moving Annual Total in SSAS? A walkthrough / demo would work as well. ...

How to access fields in a struct imported from a .mat file using loadmat in Python?

Following this question which asks (and answers) how to read .mat files that were created in Matlab using Scipy, I want to know how to access the fields in the imported structs. I have a file in Matlab from which I can import a struct: >> load bla % imports a struct called G >> G G = Inp: [40x40x2016 uint8] Tgt: [8...

How to use existing Eclipse MAT indexes for interactive analysis

I am attempting to use Eclipse MAT (Memory Analysis Toolkit) to analyze some rather large heap dumps (~2G). My laptop unfortunately has 32bit Windows, and MAT runs out of heap space @ 1.4G allocated heap. I was successful in running the heap indexer from the command line on a large, headless 64bit box. However, I am unable to convince...

How to convert a Mat variable type in an IplImage variable type in OpenCV 2.0 ?

Hi all, I am trying to rotate an image in OpenCV. I've used this code that I found here on StackOverflow Mat source(img); Point2f src_center(source.cols/2.0, source.rows/2.0); Mat rot_mat = getRotationMatrix2D(src_center, 40.0, 1.0); Mat dst; warpAffine(source, dst, rot_mat, source.size()); Once I have my dst Mat variable type fille...

mat file from matlab to pascal program

Hi please, any one help me to solve my peoblem: I have struct of array containing image file name and color histogram and save it in mat file. How can I use this file in pascal program ...

display the output from mat file

Hi Please, any one help me: how can I display the output (image file name, mean color image, color histogarm) to see it, which I saved it in sruct of array in mat file ...

MemoryAnalyzer throws StackOverFlow Error. How to solve this problem.

Hi, I am write a Java Application which will monitor Network devices. It throws OutOfMemory Error, so inorder to find out the root cause I have enabled the -XX:HeapDumpOnOutOfMemoryError flag in the java process. After adding the flag, hprof file is generated peoperly with size as around 500 MB. While try to load / parse the file in Ecl...

show static fields of a class in a heap dump

I have a heap dump, and I'm interested in the values of some static fields in a class using Eclipse MAT. How can I see these? Using MAT, I can see the class in the histogram, but it has no instances, so a number of views (objects with outgoing refs, dominator tree) are empty. MAT seems to be limited to objects and object members, but I'...

get static fields of a class in a heap dump in OQL

I have a heap dump and I'm using Eclipse MAT, though I suppose this should work through visualvm or whatever OQL client. We can select fields of all instances of a class by doing something like select s.field1, s.field2 from org.me.MyClass ... but this is restricted to member variables, and to types with instances. How can select th...