回答済み Open all cores in Parpool
I am guessing you have 16 physical cores and 32 virtual cores. "parpool" opens up same number of workers as your physical cores....
回答済み Application deployment R2012a vs. R2014b
Check if "C:\Program Files\MATLAB\MATLAB Compiler Runtime\v84\runtime\win64" is added in Windows PATH environment variable. If ...
回答済み parallel computing parfor implementation
I see in your code that each iteration is dependent on the values in the previous iteration.
var = a(i-1, j) + a(i+1,j);
T...
回答済み Reduce the size of MCR installation
There is no way to reduce the size of MCR installation. The MATLAB runtime architecture requires all the files included.
回答済み How to plot cirlces around this spots..?
Nimisha,
By executing your code, I could see that the resulting "circles" is a 0-by-1 empty matrix. It looks like the issu...
10年以上 前 | 0
回答済み SVM train and Classify
Rajith,
For training, use "svmtrain" function. <http://www.mathworks.com/help/releases/R2014a/stats/svmtrain.html#namevaluepa...
回答済み How do I read a file name into a function?
In order to read all the files with file names matching a specific pattern, you can use "fullfile" function. The below sample co...