Kishan Dhakan
Followers: 0 Following: 0
統計
MATLAB Answers
0 質問
13 回答
ランク
of 153,872
コントリビューション
0 問題
0 解答
スコア
0
バッジ数
0
コントリビューション
0 投稿
コントリビューション
0 パブリック チャネル
平均評価
コントリビューション
0 ハイライト
平均いいねの数
Feeds
回答済み
How to access app details and write app version number into a file?
You can use the property app.<your app name>UIFigure.Name to acess the app name and write it to csv or txt using MATLAB function...
How to access app details and write app version number into a file?
You can use the property app.<your app name>UIFigure.Name to acess the app name and write it to csv or txt using MATLAB function...
3年以上 前 | 0
| 採用済み
回答済み
Is it possible to save an output of a function and pass it as an input to another function after some time steps?
Try: iter = 1 G_dmg_at_index_ii = [] for ii = 2:50 [G_dmg,Output2,output3] = Stages(G_dmg, Input2, Input3); [G_dmg,...
Is it possible to save an output of a function and pass it as an input to another function after some time steps?
Try: iter = 1 G_dmg_at_index_ii = [] for ii = 2:50 [G_dmg,Output2,output3] = Stages(G_dmg, Input2, Input3); [G_dmg,...
3年以上 前 | 0
| 採用済み
回答済み
How to label datapoints in a boxplot?
To modify graphics properties of a box plot component, use findobj with the Tag property to find the component's handle. Tag val...
How to label datapoints in a boxplot?
To modify graphics properties of a box plot component, use findobj with the Tag property to find the component's handle. Tag val...
3年以上 前 | 0
回答済み
Plotting workspace variables in app designer
Since you are able to obtain the variable in workspace, there must be some way to pass it to the MATLAB App designer (say via a ...
Plotting workspace variables in app designer
Since you are able to obtain the variable in workspace, there must be some way to pass it to the MATLAB App designer (say via a ...
3年以上 前 | 0
回答済み
why coding this function returns un exact numerical results?
Try using 'format long', which shows 15 decimal places. If it still doesn't work, then your value is probably smaller than what ...
why coding this function returns un exact numerical results?
Try using 'format long', which shows 15 decimal places. If it still doesn't work, then your value is probably smaller than what ...
3年以上 前 | 0
回答済み
Plotting Multiple Y Axes on Same Side of Plot - App Designer
You can try using this file from MATLAB file exchange: https://in.mathworks.com/matlabcentral/fileexchange/9016-addaxis Ther...
Plotting Multiple Y Axes on Same Side of Plot - App Designer
You can try using this file from MATLAB file exchange: https://in.mathworks.com/matlabcentral/fileexchange/9016-addaxis Ther...
3年以上 前 | 1
| 採用済み
回答済み
Alignment issues on App Designer
This is happening because the 'tabbed group' container you are using shows two rows of tabs in design view, but only one (with b...
Alignment issues on App Designer
This is happening because the 'tabbed group' container you are using shows two rows of tabs in design view, but only one (with b...
3年以上 前 | 0
回答済み
How to continue while loop after a break?
Instead of using break, why don't you try using the sleep command with a parameter of 0.3 to see how the animation looks. That s...
How to continue while loop after a break?
Instead of using break, why don't you try using the sleep command with a parameter of 0.3 to see how the animation looks. That s...
3年以上 前 | 0
回答済み
undefined function in GUI
If you're using MATLAB app designer, it will be easier if you click the 'add a function' button and define your multiply there i...
undefined function in GUI
If you're using MATLAB app designer, it will be easier if you click the 'add a function' button and define your multiply there i...
3年以上 前 | 0
回答済み
Why the plot Limits are different if calling them differently?
This looks related to display format. Could you try: format longE ax.YLim This should show the same YLim as above in that ima...
Why the plot Limits are different if calling them differently?
This looks related to display format. Could you try: format longE ax.YLim This should show the same YLim as above in that ima...
3年以上 前 | 0
回答済み
How to display only once in a looping of 50 sample data
You could store the data in a variable and use it later. Try this: count = 0; for i=1:50 if BMI(i)<18.5 BMI_stat...
How to display only once in a looping of 50 sample data
You could store the data in a variable and use it later. Try this: count = 0; for i=1:50 if BMI(i)<18.5 BMI_stat...
3年以上 前 | 0
| 採用済み
回答済み
What is the essential difference in the use of these 2 functions, estimateGeometricTransform2D and fitgeotrans?
The functions both do pretty much the same job. 'estimateGeometricTransform2D' takes in the input arguments matchedPoints1 and ...
What is the essential difference in the use of these 2 functions, estimateGeometricTransform2D and fitgeotrans?
The functions both do pretty much the same job. 'estimateGeometricTransform2D' takes in the input arguments matchedPoints1 and ...
3年以上 前 | 0
| 採用済み
回答済み
how to do this
To convert an image to an XYZ space (or, an m-by-n-by-3 array which RGB color space uses, according to here), you can use the im...
how to do this
To convert an image to an XYZ space (or, an m-by-n-by-3 array which RGB color space uses, according to here), you can use the im...
3年以上 前 | 0