![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/15440343_1557222394234_DEF.jpg)
Utkarsh Belwal
Followers: 0 Following: 0
Statistics
RANK
11,533
of 297,016
REPUTATION
4
CONTRIBUTIONS
0 Questions
11 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
0
RANK
of 20,419
REPUTATION
N/A
AVERAGE RATING
0.00
CONTRIBUTIONS
0 Files
DOWNLOADS
0
ALL TIME DOWNLOADS
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
0 Public Channels
AVERAGE RATING
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
Graph with countries in x axis
Example of how to plot BankingHeter vs Countries graph using plot function, A = readtable('UE.xlsx') ; A.Countries = categoric...
5 years ago | 0
read selected data from excel datasheet using if statement
A(:,2) >= 14 will give a matrix of 0s and 1s, if statement will execute only if A(:,2) >= 14 returns a matrix which has all 1s a...
5 years ago | 0
bitset error for uint64
Read the documentation of dec2bin, it is written that if number is greater than flintmax then it might not work properly. In you...
5 years ago | 0
| accepted
Error starting desktop for R2019a-Windows 10
Have a look into this answer, https://in.mathworks.com/matlabcentral/answers/217765-why-does-matlab-hang-at-splash-screen-and-g...
5 years ago | 0
how to get licence key
Check out this link, enter your email address to get your trial version in this link.
5 years ago | 0
print a matrix in a specific sequence
length = 100 ; % This will produce a 120 length output A = [] ; value = 5 ; for i = 1 : length A = [A ; value] ; ...
5 years ago | 0
Why "find_system('Blocktype', 'Model')" doesn't work ?
You have to use the load_system() command first and then use the find_system(). For more information refer to the documentation ...
5 years ago | 0
How to plot this sawtooth wave and its fourier approximation
freq = 1 ; % Sawtooth frequency 1Hz T = 4 * freq ; fs = 1000; % Sampling Rate t = 0:1/fs:T-1/fs; x = sawtooth(2*pi*freq...
5 years ago | 0
for loop in matlab
% Here is a for loop which starts from 0 and ends at 100. for i = 0 : 100 % Your Code end
5 years ago | 0
how do I plot average and deviation standard at the same time?
You can refer to this matlab documentation https://in.mathworks.com/help/matlab/ref/errorbar.html
5 years ago | 0
How I can use printf or disp in MATLAB to print some special format of my data set?
A simple implementation is using a for loop and at each multiples of four print the required statement. Here is the code for sam...
5 years ago | 0