![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/2731153.jpg)
Jeffrey Girard
University of Pittsburgh
2014 年からアクティブ
Followers: 0 Following: 0
Professional Interests: affective computing
統計
All
ランク
of 157,725
コントリビューション
0 問題
0 解答
スコア
0
バッジ数
0
コントリビューション
0 投稿
コントリビューション
0 パブリック チャネル
平均評価
コントリビューション
0 ハイライト
平均いいねの数
Feeds
質問
How can I automatically detect and log changes to a USB joystick's position connected via vrjoystick?
I have a USB joystick that I would like to record the position of at a high frequency in MATLAB 2017a. I understand that I ca...
8年弱 前 | 0 件の回答 | 0
0
回答回答済み
how adjust SVM classifier prediction threshold in matlab
The output of the "predict" function of an SVM implementation will be a vector of size N, where N is the number of examples you ...
how adjust SVM classifier prediction threshold in matlab
The output of the "predict" function of an SVM implementation will be a vector of size N, where N is the number of examples you ...
9年以上 前 | 1
回答済み
How to display outputs from m file to GUI
You can display the plots on an axis that you create on the GUI figure. For text, you could also put it on an axis using the tex...
How to display outputs from m file to GUI
You can display the plots on an axis that you create on the GUI figure. For text, you could also put it on an axis using the tex...
10年弱 前 | 0
| 採用済み
回答済み
multiply a matrix by a specific value from a vector
Let's use a cleaner example: a = 5; b = [1,2,3,4;5,6,7,8]; c = [0.5,1.0,1.5,2.0]; So if I want to multiply the mat...
multiply a matrix by a specific value from a vector
Let's use a cleaner example: a = 5; b = [1,2,3,4;5,6,7,8]; c = [0.5,1.0,1.5,2.0]; So if I want to multiply the mat...
10年弱 前 | 1
| 採用済み
回答済み
Using variables created by one .m file in another
You can make qL1 a <http://www.mathworks.com/help/matlab/ref/global.html global variable>. For example, on project.m put the ...
Using variables created by one .m file in another
You can make qL1 a <http://www.mathworks.com/help/matlab/ref/global.html global variable>. For example, on project.m put the ...
10年弱 前 | 9
| 採用済み
回答済み
Accessing data in a cell array
Hopefully this will give you some clues: c = cell(1,2); c{1} = ['abcd';'efgh']; c{2} = [1,2,3,4;5,6,7,8]; c = ...
Accessing data in a cell array
Hopefully this will give you some clues: c = cell(1,2); c{1} = ['abcd';'efgh']; c{2} = [1,2,3,4;5,6,7,8]; c = ...
10年弱 前 | 1
回答済み
Deselect uimenus after click in GUI
Unfortunately, Jan's solution didn't work for me either. These aren't ideal solutions, but I have found that this behavior can b...
Deselect uimenus after click in GUI
Unfortunately, Jan's solution didn't work for me either. These aren't ideal solutions, but I have found that this behavior can b...
10年弱 前 | 0
回答済み
vlc media player invoking
I assume you are invoking VLC through ActiveX. You need to send it a video file in the MRL format in order to have it play corre...
vlc media player invoking
I assume you are invoking VLC through ActiveX. You need to send it a video file in the MRL format in order to have it play corre...
約10年 前 | 1
回答済み
Change time display of Windows Media Player using an ActiveX Control within a GUI
You can hide the duration information from WMP by changing the uiMode to none: axctl = actxcontrollist; index = strcmp(a...
Change time display of Windows Media Player using an ActiveX Control within a GUI
You can hide the duration information from WMP by changing the uiMode to none: axctl = actxcontrollist; index = strcmp(a...
約10年 前 | 0
回答済み
one frame of audio
info = audioinfo('1.mp3'); [y,Fs] = audioread('1.mp3'); Let's say that 1.mp3 is a stereo (i.e., two channel) audio file ...
one frame of audio
info = audioinfo('1.mp3'); [y,Fs] = audioread('1.mp3'); Let's say that 1.mp3 is a stereo (i.e., two channel) audio file ...
10年以上 前 | 0
| 採用済み
回答済み
How can I prevent or recover from a "joystick device error" during timer callback?
Ok, success! Recovery can be solved by restarting the joystick within the catch-statement of a try-catch block. Does anyone have...
How can I prevent or recover from a "joystick device error" during timer callback?
Ok, success! Recovery can be solved by restarting the joystick within the catch-statement of a try-catch block. Does anyone have...
10年以上 前 | 1
質問
How can I prevent or recover from a "joystick device error" during timer callback?
I have a script that repeatedly reads the position of a joystick initiated by vrjoystick() using read(). The repetition is curre...
10年以上 前 | 1 件の回答 | 0