![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/18350959_1588413210048_DEF.jpg)
Kevin Joshi
Followers: 0 Following: 0
統計
MATLAB Answers
0 質問
11 回答
ランク
of 157,897
コントリビューション
0 問題
0 解答
スコア
0
バッジ数
0
コントリビューション
0 投稿
コントリビューション
0 パブリック チャネル
平均評価
コントリビューション
0 ハイライト
平均いいねの数
Feeds
回答済み
How to show only parts of a function in a plot, in order to combine functions?
clc; clear all; %% x=linspace(0,20); y1=x.^4.*exp(-x); y2=x.^(3/4); y3=x.^2; %% x=linspace(0,20); [x12,y12] = inter...
How to show only parts of a function in a plot, in order to combine functions?
clc; clear all; %% x=linspace(0,20); y1=x.^4.*exp(-x); y2=x.^(3/4); y3=x.^2; %% x=linspace(0,20); [x12,y12] = inter...
4年以上 前 | 0
| 採用済み
回答済み
How to draw this graph?
You can use the 'XTick' and 'XTickLabel' as specified in, https://in.mathworks.com/help/matlab/ref/matlab.graphics.axis.axes-pr...
How to draw this graph?
You can use the 'XTick' and 'XTickLabel' as specified in, https://in.mathworks.com/help/matlab/ref/matlab.graphics.axis.axes-pr...
4年以上 前 | 1
回答済み
Label each data point and color code the data points
You can use the following function to colour code groups (class) in scatter plot https://in.mathworks.com/help/stats/gscatter....
Label each data point and color code the data points
You can use the following function to colour code groups (class) in scatter plot https://in.mathworks.com/help/stats/gscatter....
4年以上 前 | 0
回答済み
No gaps between subplot in for loop and shared subplot title
You can use the folowing, https://in.mathworks.com/matlabcentral/fileexchange/27991-tight_subplot-nh-nw-gap-marg_h-marg_w Exam...
No gaps between subplot in for loop and shared subplot title
You can use the folowing, https://in.mathworks.com/matlabcentral/fileexchange/27991-tight_subplot-nh-nw-gap-marg_h-marg_w Exam...
4年以上 前 | 0
回答済み
Splitting a vector at sign change
K = [1 2 3 ... -1 -2 -3 ... -1 -2 -3 -4 ... 1 2 3 4 5 6 7 8]; %% m = 1; n = 1; x = 1; y = 1; for i = 1:...
Splitting a vector at sign change
K = [1 2 3 ... -1 -2 -3 ... -1 -2 -3 -4 ... 1 2 3 4 5 6 7 8]; %% m = 1; n = 1; x = 1; y = 1; for i = 1:...
4年以上 前 | 0
回答済み
Identifying missing gaps in daily timeseries
Please check the attached code to find data available for year/month
Identifying missing gaps in daily timeseries
Please check the attached code to find data available for year/month
4年以上 前 | 0
| 採用済み
回答済み
Make array of coordinates from matrix and make the animation of moving coordinate one by one
Please check the attached code.
Make array of coordinates from matrix and make the animation of moving coordinate one by one
Please check the attached code.
4年以上 前 | 1
| 採用済み
回答済み
How can one refer to the calculation in a function m-file?
Hi, Please check the example of live script and a function called by it.
How can one refer to the calculation in a function m-file?
Hi, Please check the example of live script and a function called by it.
4年以上 前 | 0
| 採用済み
回答済み
How to combine two or more taylor diagram?
Does this do the trick? taylordiag([STDa STDr],[RMSa RMSr],[CORa CORr]);
How to combine two or more taylor diagram?
Does this do the trick? taylordiag([STDa STDr],[RMSa RMSr],[CORa CORr]);
4年以上 前 | 0
回答済み
TeX markup ignored by Matlab?
Please use this as plot lables clc; clear all; x = 1:100 y = rand(1,100) plot(x,y) xlabel({'\pi'},'interpreter','tex')...
TeX markup ignored by Matlab?
Please use this as plot lables clc; clear all; x = 1:100 y = rand(1,100) plot(x,y) xlabel({'\pi'},'interpreter','tex')...
4年以上 前 | 0
回答済み
improve visibility of a plot
Considering your data is already in log scale and has huge difference between the plot, i suggest to please consider the followi...
improve visibility of a plot
Considering your data is already in log scale and has huge difference between the plot, i suggest to please consider the followi...
4年以上 前 | 0