Feeds
질문
Any way to get the "current" class
Hi, I am writing some object oriented code (with classdef), and it would be convenient for me to have a function like this: ...
11년 초과 전 | 답변 수: 2 | 0
2
답변답변 있음
Performance improvements for "isdeployed" and "persistent"?
Another way you could try to do it is by having a function pointer so for example: if isdeployed() myFun = @myFun_depl...
Performance improvements for "isdeployed" and "persistent"?
Another way you could try to do it is by having a function pointer so for example: if isdeployed() myFun = @myFun_depl...
거의 12년 전 | 0
답변 있음
Performance improvements for "isdeployed" and "persistent"?
Hi, You could create a global variable that is initiated one time to gvar = isdeployed(); and then just refer to that variabl...
Performance improvements for "isdeployed" and "persistent"?
Hi, You could create a global variable that is initiated one time to gvar = isdeployed(); and then just refer to that variabl...
거의 12년 전 | 0
답변 있음
Canon EOS T1i
Hi, I was just wondering about the same thing. If you are in a hurry I think you could write it yourself using the Canon ...
Canon EOS T1i
Hi, I was just wondering about the same thing. If you are in a hurry I think you could write it yourself using the Canon ...
거의 13년 전 | 0
답변 있음
Accessing Bloomberg through Datafeed toolbox
You could try using the blp command, it uses the new interface. >> con = blp(); >> getdata(con,'EURUSD Curncy','Last_Pri...
Accessing Bloomberg through Datafeed toolbox
You could try using the blp command, it uses the new interface. >> con = blp(); >> getdata(con,'EURUSD Curncy','Last_Pri...
거의 13년 전 | 0
답변 있음
NVIDIA GPU recommendation: Mac (OSX 10.6.x - 64bit server)
I would suggest you look at the amount of RAM your problem needs and make sure your choice exceeds that amount, otherwise you wi...
NVIDIA GPU recommendation: Mac (OSX 10.6.x - 64bit server)
I would suggest you look at the amount of RAM your problem needs and make sure your choice exceeds that amount, otherwise you wi...
대략 13년 전 | 0
답변 있음
Training Neural Networks using GPU computing
I think that would be a great feature to have out of the box. In the meantime, I read this paper which talks a bit about it, y...
Training Neural Networks using GPU computing
I think that would be a great feature to have out of the box. In the meantime, I read this paper which talks a bit about it, y...
대략 13년 전 | 0
질문
Neural networks "view to file"
Hi, I would like export the architecture of my neural network to a graphics file but it seems like the view command is only a...
대략 13년 전 | 답변 수: 0 | 0
0
답변답변 있음
matlab preloaded 'load' files
Hi, The list depends on which toolboxes you have. You could try to search the MATLAB directory and subdirectories for *.ma...
matlab preloaded 'load' files
Hi, The list depends on which toolboxes you have. You could try to search the MATLAB directory and subdirectories for *.ma...
대략 13년 전 | 0
질문
XML special characters
Hi, I have some code that generates an xml string. For some reason, when I try to use special characters the xmlread function i...
대략 13년 전 | 답변 수: 2 | 0
2
답변답변 있음
Out of memory error when calling a MATLAB JA Builder compiled component
Hi, Are you properly disposing the native references in your java code? MWArray.disposeArray(...) We found not doing that ...
Out of memory error when calling a MATLAB JA Builder compiled component
Hi, Are you properly disposing the native references in your java code? MWArray.disposeArray(...) We found not doing that ...
대략 13년 전 | 0
답변 있음
how to reverse "sort"
Hi, There is an extra optional argument that will do that: >> m=[1 6 2 8 9]; [Y,I] = sort(m,'descend') Y = ...
how to reverse "sort"
Hi, There is an extra optional argument that will do that: >> m=[1 6 2 8 9]; [Y,I] = sort(m,'descend') Y = ...
대략 13년 전 | 3
| 수락됨
답변 있음
Builder NE Vs CShared- which is the best one?
In theory you could just use the basic Compiler product to produce a dll. In my opinion it is much more convinient to use the NE...
Builder NE Vs CShared- which is the best one?
In theory you could just use the basic Compiler product to produce a dll. In my opinion it is much more convinient to use the NE...
13년 초과 전 | 0
| 수락됨
답변 있음
Using deploytool to create Java package
For a more robust deployment I would also suggest you change this line: load (['D:/Test/Tree.mat'], 'Tree') The reason i...
Using deploytool to create Java package
For a more robust deployment I would also suggest you change this line: load (['D:/Test/Tree.mat'], 'Tree') The reason i...
13년 초과 전 | 1
답변 있음
Does OOP work with Builder JA
You can't really use MATLAB objects as if they were normal Java objects. Your MATLAB objects (and primitive types) will becom...
Does OOP work with Builder JA
You can't really use MATLAB objects as if they were normal Java objects. Your MATLAB objects (and primitive types) will becom...
13년 초과 전 | 0
답변 있음
Debugging parfor
Its true that the computational parts of the code generate the same errors with or without the matlabpool open, which is a good ...
Debugging parfor
Its true that the computational parts of the code generate the same errors with or without the matlabpool open, which is a good ...
13년 초과 전 | 0
질문
Debugging parfor
Hi, We have been working on paralelizing our code, and we have found that when an error occurs inside a parfor it is hard to ...
13년 초과 전 | 답변 수: 3 | 0
3
답변질문
Symbolic expression bounds
I have a symbolic expression (the real expression can be anything the Symbolic Toolbox supports) but for example we can use the ...
13년 초과 전 | 답변 수: 3 | 0
3
답변질문
Converting symbolic boolean to MATLAB boolean
Hi, I have a symbolic expression that can be evaluated to true / false, and I would like to get that result back to MATLAB. Th...
13년 초과 전 | 답변 수: 1 | 0
1
답변질문
What R2011a feature do you like the most?
What R2011a feature do you like the most?
13년 초과 전 | 답변 수: 2 | 1
2
답변답변 있음
Global Static classes (or alternative?)
Hi Alexander, I think you could try to use this inside your class definition: methods (Static) function sing...
Global Static classes (or alternative?)
Hi Alexander, I think you could try to use this inside your class definition: methods (Static) function sing...
13년 초과 전 | 2
| 수락됨
답변 있음
Anyone listening for a particular event?
Hi Andrew, thanks for your answer, but I don't think it would work because my setup is a little bit more complex: My events a...
Anyone listening for a particular event?
Hi Andrew, thanks for your answer, but I don't think it would work because my setup is a little bit more complex: My events a...
13년 초과 전 | 0
질문
Anyone listening for a particular event?
Hi, I have an object that can fire many events, and computing the events takes a significant amount of time. Therefore, I wou...
13년 초과 전 | 답변 수: 3 | 2
3
답변답변 있음
Am I inside a parfor?
With your code I was able to write this function which works great: function ip = inParallel() job = getCurrentJob...
Am I inside a parfor?
With your code I was able to write this function which works great: function ip = inParallel() job = getCurrentJob...
거의 14년 전 | 1
질문
Am I inside a parfor?
Hi, There are certain functions I don't want to execute in parallel, and I would like to throw an error if they are. Is there...
거의 14년 전 | 답변 수: 2 | 1