Giridharan Kumaravelu
Followers: 0 Following: 0
Statistics
RANK
4 197
of 295 569
REPUTATION
12
CONTRIBUTIONS
0 Questions
8 Answers
ANSWER ACCEPTANCE
0.00%
VOTES RECEIVED
0
RANK
10 648 of 20 247
REPUTATION
50
AVERAGE RATING
4.00
CONTRIBUTIONS
1 File
DOWNLOADS
2
ALL TIME DOWNLOADS
357
RANK
of 154 105
CONTRIBUTIONS
0 Problems
0 Solutions
SCORE
0
NUMBER OF BADGES
0
CONTRIBUTIONS
0 Posts
CONTRIBUTIONS
4 Public Channels
AVERAGE RATING
30
CONTRIBUTIONS
0 Highlights
AVERAGE NO. OF LIKES
Feeds
How can I create axis labels with subscripts and greek letters?
The following should work: y1 = 1:10; y2 = (1:10)*0.5; x = 1:10; plot(y1); hold on; plot(y2); xlabel('Si...
mer än 6 år ago | 0
How to transfer matrix values loaded in one subfunction to the main function?
You could use them as global variables as shown below function calculation global A global B [a,b] = calc...
mer än 6 år ago | 0
How remove a field inside a structure?
fieldsS = fieldnames(sd.Variables); for i = 1:length(fieldsS) S.Variables.(fieldsS{i}) = rmfield(sd.Variables.(fieldsS{i})...
mer än 6 år ago | 0
| accepted
VideoWriter is only showing the last figure as opposed to full 135 image movie
You are writing the video outside of the loop, that is why you are seeing only the last image. Move the writeVideo command insid...
mer än 6 år ago | 0
| accepted
how do i change a variable name from workspace
getname = @(x) inputname(1); IR0004__ = 10; str = getname(IR0004__); newstr = erase(str,'_'); eval([newstr '=' str...
mer än 6 år ago | 0
How do i repeat an already generated gaussian pulse signal for a certain number of times?
If you are using a code in the Simulink, you could try the repmat() function.
mer än 6 år ago | 0
I am a MATLAB beginner, I have a function that generates 100 X and Y coordinates for 30 users. X and Y are 30 by 100 matrices. How do I generate the distance between a user and the other 29 users, for each of the 30 users.
for m = 1:NoUsers for j = 1:NoUsers for t = 1:s D(m,j,t) = sqrt((x(m,t) - x(j,t))^2+(y(m,...
mer än 6 år ago | 0
| accepted
exporting array data to text file
xTable = array2table(x); writetable(xTable,'final.txt','Delimiter',' '); The above code can help and you can modify the ...
mer än 6 år ago | 0
Submitted
Download files from your DropBox API folder using MATLAB
This function allows a user to download multiple files from DropBox(TM) to your computer.
mer än 6 år ago | 2 downloads |