![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/2704741_1487666104448.jpg)
Chibuzo Nnonyelu
Mid Sweden University
Followers: 0 Following: 0
Researcher with interest in signal processing and machine learning. I have over 10 years experience using MATLAB & Simulink, and various other programming languages.
Programming Languages:
Python, C++, C, Java, C#, PHP, Javascript, MATLAB, SQL, HTML, CSS, Arduino, Visual Basic
Spoken Languages:
English
Python, C++, C, Java, C#, PHP, Javascript, MATLAB, SQL, HTML, CSS, Arduino, Visual Basic
Spoken Languages:
English
統計
All
ランク
of 157,725
コントリビューション
0 問題
0 解答
スコア
0
バッジ数
0
コントリビューション
0 投稿
コントリビューション
0 パブリック チャネル
平均評価
コントリビューション
0 ハイライト
平均いいねの数
Feeds
回答済み
How can a change the line color in an axes with an already plotted figure (MATLAB GUIDE) ?
For cases where the plots are made by a function, for example using the pwelch, one is not able to place a variable for the plot...
How can a change the line color in an axes with an already plotted figure (MATLAB GUIDE) ?
For cases where the plots are made by a function, for example using the pwelch, one is not able to place a variable for the plot...
約5年 前 | 3
回答済み
How can I add the average of two consecutive numbers?
By using indexing and simple maths (y1 + y2)/2 = (y2 - y1)/2 + y1 therefore, you can do this as Area = diff(y)/2 + y(1, e...
How can I add the average of two consecutive numbers?
By using indexing and simple maths (y1 + y2)/2 = (y2 - y1)/2 + y1 therefore, you can do this as Area = diff(y)/2 + y(1, e...
6年以上 前 | 0
回答済み
Random Number Generation for Parallel Computing Toolbox
One way to approach this is to generate the random numbers just before the parfor-loop. This may use for memory depending on the...
Random Number Generation for Parallel Computing Toolbox
One way to approach this is to generate the random numbers just before the parfor-loop. This may use for memory depending on the...
7年弱 前 | 0
回答済み
font format in second y-axis
To label the axis in LaTeX font or style, use set(gca, 'DefaultTextInterpreter', 'Latex'); This makes all LaTeX the defa...
font format in second y-axis
To label the axis in LaTeX font or style, use set(gca, 'DefaultTextInterpreter', 'Latex'); This makes all LaTeX the defa...
約7年 前 | 0
回答済み
3-D plot in Matlab
You can modify this function to work for you: function plotsphere(azimuth, elevation, amplitude) [X, Y, Z] = sph...
3-D plot in Matlab
You can modify this function to work for you: function plotsphere(azimuth, elevation, amplitude) [X, Y, Z] = sph...
8年弱 前 | 1
回答済み
tables remove one field
Goes through each column and deletes a column if the number of 'No' found in the column is equal to the height of the table. ...
tables remove one field
Goes through each column and deletes a column if the number of 'No' found in the column is equal to the height of the table. ...
8年弱 前 | 1
送信済み
createlegend(varargin)
Create legend with customised variable names and variable unit, and in LaTeX format.
8年弱 前 | ダウンロード 1 件 |
![Thumbnail](/matlabcentral/mlc-downloads/downloads/submissions/61709/versions/1/screenshot.png)
送信済み
ticklabelunit(axes, vaxis, units, varargin)
Appends unit sign/symbol to XTickLabel, YTickLabel, ZTickLabel in prefix or suffix positions.
8年弱 前 | ダウンロード 1 件 |
![Thumbnail](/matlabcentral/mlc-downloads/downloads/submissions/61692/versions/2/screenshot.png)
回答済み
Create a for loop using fminsearch
If I understand your question correctly, you want to be able to run the fminsearch for each initial guess at the time time? W...
Create a for loop using fminsearch
If I understand your question correctly, you want to be able to run the fminsearch for each initial guess at the time time? W...
9年弱 前 | 0
回答済み
Plot wont come up
Look out for it in an extended monitor, if you are using more than one monitor.
Plot wont come up
Look out for it in an extended monitor, if you are using more than one monitor.
約9年 前 | 0
回答済み
How can I set a variable 0.3 > x > 0.5 for use in calculating a CDF from a PDF?
x = (0.3:0.5) would return only 0.3 because by default, the step is 1. To get numbers between the two values, use x = 0.3...
How can I set a variable 0.3 > x > 0.5 for use in calculating a CDF from a PDF?
x = (0.3:0.5) would return only 0.3 because by default, the step is 1. To get numbers between the two values, use x = 0.3...
約9年 前 | 0
回答済み
Hii..can i get any help to write the code for the integral equation attached in file below in matlab?
Have you tried the int function? Find the documentation below: <http://www.mathworks.com/help/symbolic/int.html?searchHighlig...
Hii..can i get any help to write the code for the integral equation attached in file below in matlab?
Have you tried the int function? Find the documentation below: <http://www.mathworks.com/help/symbolic/int.html?searchHighlig...
約9年 前 | 0
回答済み
how connect matlab program with Visual c++ 6.0?
1. This can be done with MEX. However, you need to have a c++ compiler installed in your system. Your C++ compiler and MATLAB en...
how connect matlab program with Visual c++ 6.0?
1. This can be done with MEX. However, you need to have a c++ compiler installed in your system. Your C++ compiler and MATLAB en...
約9年 前 | 0
回答済み
generate random numbers with exact mean and std
x = mu + sigma*randn(sizeof); % for normally distributed random numbers OR x = random('normal', mu, sigma, row, column...
generate random numbers with exact mean and std
x = mu + sigma*randn(sizeof); % for normally distributed random numbers OR x = random('normal', mu, sigma, row, column...
9年以上 前 | 0
回答済み
Setting default Interpreter to Latex
MATLAB changed some object properties name. For this issue, the following will work set(groot, 'defaultAxesTickLabelInterpret...
Setting default Interpreter to Latex
MATLAB changed some object properties name. For this issue, the following will work set(groot, 'defaultAxesTickLabelInterpret...
10年弱 前 | 23
| 採用済み
質問
How to customize performance function in MATLAB neural network.
Greetings. I am relatively a beginner in neural network. I started off using MATLAB neural network tool until I was met with som...
10年弱 前 | 1 件の回答 | 0
1
回答回答済み
How to implement a custom performance function in R2013b
Hi Calvin, I am interested in using a custom performance function in MATLAB NNtool and I have been searching to no success. Mig...
How to implement a custom performance function in R2013b
Hi Calvin, I am interested in using a custom performance function in MATLAB NNtool and I have been searching to no success. Mig...
10年弱 前 | 0
回答済み
How to make the fft of a signal while receiving it?
I recommend you add timer to your code. Let the timer re-initiate the same process after the specified interval. t = timer('T...
How to make the fft of a signal while receiving it?
I recommend you add timer to your code. Let the timer re-initiate the same process after the specified interval. t = timer('T...
12年弱 前 | 0
回答済み
is reconstruction possible from tampered image ?
MATLAB imports images as a 3-dimensional array. Depending on image coding though. You can either replace the tampered portions w...
is reconstruction possible from tampered image ?
MATLAB imports images as a 3-dimensional array. Depending on image coding though. You can either replace the tampered portions w...
12年弱 前 | 0
| 採用済み