![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/10920379_1527625897134_DEF.jpg)
Giridharan Kumaravelu
2018 年からアクティブ
Followers: 0 Following: 0
統計
All
ランク
of 157,725
コントリビューション
0 問題
0 解答
スコア
0
バッジ数
0
コントリビューション
0 投稿
コントリビューション
4 パブリック チャネル
平均評価
30
コントリビューション
0 ハイライト
平均いいねの数
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...
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...
6年以上 前 | 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...
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...
6年以上 前 | 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})...
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})...
6年以上 前 | 0
| 採用済み
回答済み
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...
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...
6年以上 前 | 0
| 採用済み
回答済み
how do i change a variable name from workspace
getname = @(x) inputname(1); IR0004__ = 10; str = getname(IR0004__); newstr = erase(str,'_'); eval([newstr '=' str...
how do i change a variable name from workspace
getname = @(x) inputname(1); IR0004__ = 10; str = getname(IR0004__); newstr = erase(str,'_'); eval([newstr '=' str...
6年以上 前 | 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.
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.
6年以上 前 | 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,...
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,...
6年以上 前 | 0
| 採用済み
回答済み
exporting array data to text file
xTable = array2table(x); writetable(xTable,'final.txt','Delimiter',' '); The above code can help and you can modify the ...
exporting array data to text file
xTable = array2table(x); writetable(xTable,'final.txt','Delimiter',' '); The above code can help and you can modify the ...
6年以上 前 | 0
送信済み
Download files from your DropBox API folder using MATLAB
This function allows a user to download multiple files from DropBox(TM) to your computer.
6年以上 前 | ダウンロード 2 件 |