![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/1764615.jpg)
Evgeny Pr
The Research University of Information Technologies (University ITMO)
2010 年からアクティブ
Followers: 0 Following: 0
Professional Interests: programming, image processing, biomedical imaging
統計
All
ランク
of 157,725
コントリビューション
0 問題
0 解答
スコア
0
バッジ数
0
コントリビューション
0 投稿
コントリビューション
0 パブリック チャネル
平均評価
コントリビューション
0 ハイライト
平均いいねの数
Feeds
質問
PCT GPU Computing: CUDA error was: setting the device when a process is active is not allowed
Hi, everyone! It seems to me that there is a problem in Parallel Computing Toolbox (PCT) with CUDA operation. The problem is...
約12年 前 | 2 件の回答 | 2
2
回答回答済み
Error using length() command ??
You redefined LENGTH? For example: length = [] length('r') Index exceeds matrix dimensions. which('leng...
Error using length() command ??
You redefined LENGTH? For example: length = [] length('r') Index exceeds matrix dimensions. which('leng...
約12年 前 | 3
回答済み
Code Blocks configuration for Calling Matlab code from C/C++
GCC compiler for "MATLAB Externals" is not supported on windows platform. You must use the Microsoft compiler. ...but, unfort...
Code Blocks configuration for Calling Matlab code from C/C++
GCC compiler for "MATLAB Externals" is not supported on windows platform. You must use the Microsoft compiler. ...but, unfort...
約12年 前 | 0
| 採用済み
回答済み
Operation on matrix_for beginner
u = 1 ./ (exp(a * V / c) - 1) + 1 Out = bsxfun(@rdivide, M, u) For example: M = rand(3, 12) V = rand(1, 12) a ...
Operation on matrix_for beginner
u = 1 ./ (exp(a * V / c) - 1) + 1 Out = bsxfun(@rdivide, M, u) For example: M = rand(3, 12) V = rand(1, 12) a ...
約12年 前 | 1
回答済み
How to: Matrix question empty column
This available only for *cell arrays*. [] - (Empty) Already an array Numeric arrays can not store any other empty numeric...
How to: Matrix question empty column
This available only for *cell arrays*. [] - (Empty) Already an array Numeric arrays can not store any other empty numeric...
約12年 前 | 1
回答済み
display different colors in command window, using command "disp" or similar
Use <http://www.mathworks.com/matlabcentral/fileexchange/24093-cprintf-display-formatted-colored-text-in-the-command-window cpri...
display different colors in command window, using command "disp" or similar
Use <http://www.mathworks.com/matlabcentral/fileexchange/24093-cprintf-display-formatted-colored-text-in-the-command-window cpri...
約12年 前 | 1
回答済み
Decimal random number generator
Do you have the distribution law for pseudo-random numbers for your problem? You can use RAND function for generate uniformly di...
Decimal random number generator
Do you have the distribution law for pseudo-random numbers for your problem? You can use RAND function for generate uniformly di...
約12年 前 | 0
回答済み
ANOVAN: Undefined function or variable "denommat"
I think this is a bug (defect) in function ANOVAN. Variable _denommat_ is not define, but use in nested function MAKESTATS for ...
ANOVAN: Undefined function or variable "denommat"
I think this is a bug (defect) in function ANOVAN. Variable _denommat_ is not define, but use in nested function MAKESTATS for ...
約12年 前 | 0
回答済み
Mean of Multiple Data
frequency = [1, 2, 3, 4, 5, 6] impedance = [6 2 7 5 6 7 10 9 5 1 7 9 7 8 4 7 4...
Mean of Multiple Data
frequency = [1, 2, 3, 4, 5, 6] impedance = [6 2 7 5 6 7 10 9 5 1 7 9 7 8 4 7 4...
約12年 前 | 1
| 採用済み
回答済み
Plot multiple graph using 'hold on' and loop function
You want to do this? n = 0.1:0.1:1; x = 0.1:0.1:3; for ni = n a = 1 / 3^ni; y = a * x.^ni; plo...
Plot multiple graph using 'hold on' and loop function
You want to do this? n = 0.1:0.1:1; x = 0.1:0.1:3; for ni = n a = 1 / 3^ni; y = a * x.^ni; plo...
約12年 前 | 1
回答済み
Use of "return" in simple if statement
You need to use ERROR function, do not return: function myfunc(parameter) if (parameter < 1) error('Wrong...
Use of "return" in simple if statement
You need to use ERROR function, do not return: function myfunc(parameter) if (parameter < 1) error('Wrong...
約12年 前 | 1
回答済み
Reading Multiple Images from Folder
Use natural sorting for image filenames. http://www.mathworks.com/matlabcentral/fileexchange/10959-sortnat-natural-order-sort...
Reading Multiple Images from Folder
Use natural sorting for image filenames. http://www.mathworks.com/matlabcentral/fileexchange/10959-sortnat-natural-order-sort...
約12年 前 | 1
回答済み
How do I create a function that interweaves two vectors of 1xN dimensions?
As one of the ideas: v1 = [1, 2, 3, 4] v2 = [5, 6, 7, 8, 9, 10] lv1 = length(v1) lv2 = length(v2) v = zer...
How do I create a function that interweaves two vectors of 1xN dimensions?
As one of the ideas: v1 = [1, 2, 3, 4] v2 = [5, 6, 7, 8, 9, 10] lv1 = length(v1) lv2 = length(v2) v = zer...
約12年 前 | 1
| 採用済み
回答済み
String to Variable conversion?
So that's that? strcat('data.', evalin('base', strcat('v',num2str(n))))
String to Variable conversion?
So that's that? strcat('data.', evalin('base', strcat('v',num2str(n))))
約12年 前 | 0
質問
Why do I get an error if do not define a constructor in the inherited class?
Here's a simple example that does not work in the MATLAB language: classdef Bar < handle % Bar class ...
約12年 前 | 2 件の回答 | 2
2
回答回答済み
Select specific digits of a number
x = 953 d = 100 r = mod(x, d) % 53 y = (x - r) / d % y = 9
Select specific digits of a number
x = 953 d = 100 r = mod(x, d) % 53 y = (x - r) / d % y = 9
約12年 前 | 8
| 採用済み
送信済み
DIRWALK - Walk the directory tree
Generate the file names and dir names in a directory tree by walking the tree.
13年以上 前 | ダウンロード 5 件 |
送信済み
DRAGZOOM - Drag and zoom tool
DRAGZOOM allows you to handy interactively manage the axes in figure.
13年以上 前 | ダウンロード 3 件 |
![Thumbnail](/matlabcentral/mlc-downloads/downloads/submissions/29276/versions/14/screenshot.png)
質問
Bugs in tscollection class?
I found that in class TSCOLLECTION the method ADDTS has two bugs in subfunction "localUnitConv". Or am I mistaken? But what i...
13年以上 前 | 1 件の回答 | 0
1
回答回答済み
How can I get the HWND (Native Window Handle) of the client region of UIPANEL on MATLAB Figure?
It seems that I'm moving in the right direction... :) For example: h = figure; jc = javacomponent(java.awt.Canvas, [100...
How can I get the HWND (Native Window Handle) of the client region of UIPANEL on MATLAB Figure?
It seems that I'm moving in the right direction... :) For example: h = figure; jc = javacomponent(java.awt.Canvas, [100...
14年弱 前 | 0
回答済み
Two problems
Hi! 1) Use functions: SIND, COSD, TAND, etc... and convertors RAD2DEG, DEG2RAD. 2) You can use FIX(DET(a)) :) 3) Book -...
Two problems
Hi! 1) Use functions: SIND, COSD, TAND, etc... and convertors RAD2DEG, DEG2RAD. 2) You can use FIX(DET(a)) :) 3) Book -...
14年弱 前 | 0
質問
How can I get the HWND (Native Window Handle) of the client region of UIPANEL on MATLAB Figure?
Hi! I need to have access from the outside to a given region of MATLAB Figure. I want to ask this region, using UIPANEL. Can...
14年弱 前 | 3 件の回答 | 0
3
回答送信済み
INI Config
The class for working with configurations of settings and INI-files.
15年弱 前 | ダウンロード 4 件 |
![Thumbnail](/matlabcentral/mlc-downloads/downloads/submissions/24992/versions/4/screenshot.png)