Community Profile

photo

Utkarsh Belwal


Last seen: 4 years ago Active since 2019

Statistics

All
  • Knowledgeable Level 1
  • First Answer
  • Solver

View badges

Content Feed

View by

Answered
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

Answered
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

Answered
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

Answered
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

Answered
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

Answered
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

Answered
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

Answered
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

Answered
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

Answered
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

Answered
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