
Rik
E-mails with feedback/questions about FEX submissions are welcomed. In general I will post e-mails about Answers on the related page, unless there is good cause not to do so.
Statistics
RANG
24
of 273 349
RÉPUTATION
8 776
CONTRIBUTIONS
12 Questions
3 010 Réponses
ACCEPTATION DE VOS RÉPONSES
33.33%
VOTES REÇUS
1 235
RANG
1 838 of 18 453
RÉPUTATION
941
CLASSEMENT MOYEN
4.80
CONTRIBUTIONS
28 Fichiers
TÉLÉCHARGEMENTS
147
ALL TIME TÉLÉCHARGEMENTS
6443
CONTRIBUTIONS
0 Publications
CONTRIBUTIONS
0 Public Chaîne
CLASSEMENT MOYEN
CONTRIBUTIONS
0 Point fort
NOMBRE MOYEN DE LIKES
Content Feed
Selecting a file to create a plot on MATLAB
You mean like uigetfile and prompt?
1 jour il y a | 0
Is it possible to implement a GUI in a Matlab script?
For general advice and examples for how to create a GUI (and avoid using GUIDE), have look at this thread. It will show you dif...
2 jours il y a | 0
| A accepté
Sound files with 4 channels in MATLAB
S = load('handel'); new_y = repmat(S.y,1,4); size(new_y) Now you can no longer use the sound function, as that only supports ...
4 jours il y a | 0
| A accepté
How to present this equation for plotting
You need either power or .^ (otherwise you perform a matrix power). So apart from that correction, either will work. I would ...
7 jours il y a | 0
2012 and 2018 compatibility
It is not completely true that all code that runs without error on R2012a (or b) will run with the same effect on R2018a (or b)....
7 jours il y a | 0
Why does subtracting '0' from an array of char appear to convert it to a numerical double.
The minus function is not really defined for char, so the operands need to be converted to a datatype that is supported. Since ...
8 jours il y a | 1
| A accepté
Range variables callback issue
I fully agree with Stephen that you should not use global variables. There are more legitimate uses than eval, but not many. ...
8 jours il y a | 0
| A accepté
How to change the symbol size of the legend
This is only possible by increasing the size of the markers themselves in the plot. If you don't want that, you will need to cre...
8 jours il y a | 0
Copying files based on a text file from a source folder that contains multiple sub-folders to a destination folder
The readlines function will allow you to read a text file (storing each line as an element of a string vector). The functions...
10 jours il y a | 0
How can I use a user define function (.m file) as the prob.objective
From what I can tell reading the documentation, the easiest way would be to use the <https://www.mathworks.com/help/optim/ug/fcn...
10 jours il y a | 0
is it possible to create a matlab script directly from gui pushbutton events (kind of like command line history)?
If you don't use numbered variables, you can include an fprintf statement that will write a line to a text file. There is no aut...
10 jours il y a | 0
Set at least two ticks on log scales in figures
I don't know if this is an acceptable solution for you, but you could query the current tick labels and take action in your code...
10 jours il y a | 1
how to determine if vector of row times is within timerange?
The timerange datatype is really only intended to be used with timetables. Once you convert your dates to a timetable, you can u...
11 jours il y a | 1
| A accepté
parfor loop output and input are not matched in order
I suspect the source of the problem is the interaction with the file system. You should consider generating a random file name ...
12 jours il y a | 1
| A accepté
Try catch error 'Unrecognized function or variable'
The code in the try block will be executed normally. If any line results in an error, the execution will abort, and the catch bl...
12 jours il y a | 1
FFT of EEG data
Are you sure your file is in the format this function expects? This is a good lesson for your own code: make sure to write docu...
15 jours il y a | 0
| A accepté
how can I find distance between one base station and all the users separately?
You can use the hypot function to calculate the Pythagorean distance. Check the documentation to see if it allows array inputs. ...
17 jours il y a | 0
| A accepté
I am currently a college student.
That is correct. You are no longer allowed to use the student license if you are no longer a student. If you become a student ag...
22 jours il y a | 0
vpasolve all solutions?
There might be a direct way, but at the very least there is a workaround: Since you can specify an initial estimate, you can ...
23 jours il y a | 0
How to solve numerically and find the smallest value?
You can supply an initial estimate or a search range to vpasolve, as its documentation explains: syms v L0 x x=2; A=sqrt(2)*x...
25 jours il y a | 0
| A accepté
gunzip(url) function not downloading archived file properly.
The file itself is not publicly available without a login, and that is what matters. Using websave will not help, nor will using...
26 jours il y a | 0
How to generate a random number from a matris
If you want to select a number randomly from Y, you can use randi directly to index: Y=randi([0,300],[1,500]); RandomScalar=Y(...
29 jours il y a | 0
Undefined function or command newff
The newff function did indeed exist (in the Neural Network Toolbox). According to this answer it became obsolete in 2010, altho...
29 jours il y a | 0
regexprep: Nested ordinal token not captured
I'm not entirely sure tokens can be nested (at least in the implementation that Matlab uses). You can also explore the output o...
30 jours il y a | 1
| A accepté
Difference between CloseRequestFcn and DeleteFcn?
Summarizing what has been mentioned in comments so far: CloseRequestFcn The CloseRequestFcn responds to any calls to the close...
environ un mois il y a | 1
| A accepté
MATLAB benchmarks for i7-12700K vs i9-12900
That will depend on the exact code profile you're going to use. Some code benefits from multiple cores, some does not. Some comp...
environ un mois il y a | 0
binwidth is not working
You're just creating a variable. You do not use that variable as an input argument, or to modify the histogram object after you ...
environ un mois il y a | 0
Create new data sheet from fprintf code outputs
Your loop is overwriting the variable every iteration. You should replace this: fds=[Name,FD] With this: fds=[fds;N...
environ un mois il y a | 0