![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/20384143_1605734704312_DEF.jpg)
Frantisek Gaspar
Followers: 0 Following: 0
統計
All
Feeds
回答済み
using a Monte Carlo simulation with 100,000 trials to find the probability of a random integer that is larger than the other random integer in [4,21]
%% Parameters I_min = 4; I_max = 21; n_trials = 1e4; %% Simulation A_value = I_min:I_max; B_random_value = randi( .....
using a Monte Carlo simulation with 100,000 trials to find the probability of a random integer that is larger than the other random integer in [4,21]
%% Parameters I_min = 4; I_max = 21; n_trials = 1e4; %% Simulation A_value = I_min:I_max; B_random_value = randi( .....
約2年 前 | 0
回答済み
I need to take the data of more than 100 excel files. I have managed to obtain the name of each one of the files but when I use readmatrix it gives me an error.
For reading tabular data I recomend readtable function. The function can be set to handle various files and is quite robust. If ...
I need to take the data of more than 100 excel files. I have managed to obtain the name of each one of the files but when I use readmatrix it gives me an error.
For reading tabular data I recomend readtable function. The function can be set to handle various files and is quite robust. If ...
約2年 前 | 0
回答済み
fill/patch interpolate alpha
I think that undocumented MATLAB has the answer: https://undocumentedmatlab.com/articles/plot-line-transparency-and-color-gradie...
fill/patch interpolate alpha
I think that undocumented MATLAB has the answer: https://undocumentedmatlab.com/articles/plot-line-transparency-and-color-gradie...
3年弱 前 | 0
回答済み
Common legend and axes using tiled layout
Crude way to achive this is to shink the tiledlayout to make space under it and move the legend there. Both can be done using Po...
Common legend and axes using tiled layout
Crude way to achive this is to shink the tiledlayout to make space under it and move the legend there. Both can be done using Po...
3年弱 前 | 0
回答済み
How can I Transform the image according to the histogram equalization technique.?
These is a histeq function. Yout can select region of interest like my_img(100:200, 69:420, :) and use it as input to histeq. Fo...
How can I Transform the image according to the histogram equalization technique.?
These is a histeq function. Yout can select region of interest like my_img(100:200, 69:420, :) and use it as input to histeq. Fo...
3年弱 前 | 0
回答済み
Edit plot position in MATLAB
Figures have properties related to Exporting: https://www.mathworks.com/help/matlab/ref/matlab.ui.figure-properties.html#d123e43...
Edit plot position in MATLAB
Figures have properties related to Exporting: https://www.mathworks.com/help/matlab/ref/matlab.ui.figure-properties.html#d123e43...
3年弱 前 | 0
回答済み
How to change Legend Bar Color's Object?
The color depends on the object the legend entry belongs to. The simplest way to change it is to create invisible graphical obje...
How to change Legend Bar Color's Object?
The color depends on the object the legend entry belongs to. The simplest way to change it is to create invisible graphical obje...
3年弱 前 | 0
| 採用済み
質問
Find all Text in Tiledlayout
Using function findall I tried to get handles of all Text objects in a figure. For most Text objects findall(gcf(), "Type", "tex...
3年弱 前 | 1 件の回答 | 2
1
回答質問
Memory leak of parallel workers
I have a code using the local cluster for the execution of functions using parfeval. I was using this code on version 2018a and ...
3年以上 前 | 0 件の回答 | 0
0
回答質問
Automatic Differentiation for gamma and psi functions
Is there a way to make automatic differentiation work with MATLAB functions gamma and psi? I can use equivalent custom functions...
約4年 前 | 1 件の回答 | 0