Réponse apportée
Looping Factorial that adds successive terms
You should have just shown the last line. I first spent quite some time finding the correct method of implementing your non-desi...

plus de 6 ans il y a | 0

Réponse apportée
Can someone give an easy explanation for what hObject is and what handles is in MATLAB GUI?
In GUIs that are generate by GUIDE, every callback has 3 arguments: hObject: the handle to the object that generated the callba...

plus de 6 ans il y a | 3

| A accepté

Réponse apportée
Lookup-scheme for potentially large n choose k matrices
If the citeria below are satisfied, you can use memoize: Performance is important. The function is time consuming. The functi...

plus de 6 ans il y a | 1

Réponse apportée
Name arrays based on a variable
The reasons why naming variables dynamically can be found here. It sounds like you are looking for the features a struct will pr...

plus de 6 ans il y a | 0

Réponse apportée
To make coding simplier and have the same plot
You could vectorize this, but using a loop is much easier and will probably have the same performance. Here is an example for t...

plus de 6 ans il y a | 0

| A accepté

Réponse apportée
Matching X and Y co-ordinated from the reference xy
Although you can solve this with the ismember function, you are actually looking for the intersect function: X = [1,2,3,4,5,6,7...

plus de 6 ans il y a | 1

| A accepté

Réponse apportée
Passing array between GUI callbacks
This is in broad strokes how you can use getappdata and setappdata. h_fig=figure; %in your startup/constructor function: A=...

plus de 6 ans il y a | 0

| A accepté

Réponse apportée
I want t know if cell is contained in another cell?
The input to cellfun must be a cell, which will be unwrapped before handing it to the function. You als have curly brackets arou...

plus de 6 ans il y a | 0

Réponse apportée
how to switch the values of a variable
I guess boldly: This is probably your current code: figure(1),clf(1)%don't forget clf during debuggin array=[1 2 3 5 7]; x=l...

plus de 6 ans il y a | 0

Réponse apportée
What does the 'imfuse' output mean?
The output is an image. If you don't understand a function reading its documentation is an excellent start. Here is a link to th...

plus de 6 ans il y a | 1

Réponse apportée
So let's say I have a 3 row, 3 column matrix. If I code the following:
The documentation explains what the second input does. One of the advantages of Matlab over their competition is the documentati...

plus de 6 ans il y a | 0

Réponse apportée
How to plot a temperature in xy axis (2D temperature contour)?
The surf function expects a matrix, so you will have to convert your linear data to a matrix. The accumarray function is a very ...

plus de 6 ans il y a | 0

| A accepté

Réponse apportée
If I have an older version of Matlab can it be upgraded to a newer version like 2015 for free?
You can update to whichever release your license entitles you. This is different for different licenses. The download center sho...

plus de 6 ans il y a | 0

Réponse apportée
How to calculate mean of output in a for loop?
If you want to calculate the mean and the variance you will have to store the output. Since you know the number of iterations, y...

plus de 6 ans il y a | 0

Réponse apportée
Is there anyway to convert GUI to .exe without using MATLAB Compiler ?
I am not aware of any method outside of Compiler that will allow you to do that. The only 'alternative' I know is using GNU Oct...

plus de 6 ans il y a | 0

Réponse apportée
best option for storing metadata associated to each data file
Another way of thinking about metadata is that it is data itself. Store it as a separate plain text file with the exact same nam...

plus de 6 ans il y a | 1

Réponse apportée
saving multiple .mat files with the same name from a script
Use sprintf to form the file names with a number. During the loading, you should load to an output variable and store all the...

plus de 6 ans il y a | 0

Réponse apportée
Few questions in matlab assignment
If you paste your code in the Matlab editor you will see two mlint warnings and one error. The first warning is that V is not d...

plus de 6 ans il y a | 0

Réponse apportée
How to separate values of string input into other variables???
I'm puzzled why you would want this. The cause of your issue is that you aren't clear about your data types. The char array in f...

plus de 6 ans il y a | 0

| A accepté

Réponse apportée
Get Matlab R2019b as default program to open .m files on Windows 7
You can select the 'matlab.exe' file in the folder below: C:\Program Files\MATLAB\R2019b\bin\win64 That should make it show up...

plus de 6 ans il y a | 0

| A accepté

Réponse apportée
How can i calculate the center of mass ?
You can use the VOXELISE function to convert your mesh to a voxelgrid. Use a resolution that makes the most sense to you: too fe...

plus de 6 ans il y a | 1

Réponse apportée
How to write low level text to a file without interpretation
If you want to write a char array, you should use the fprintf('%s', txt) syntax, otherwise fprintf will interpret your input as ...

plus de 6 ans il y a | 0

| A accepté

Réponse apportée
How to write this equation?
There is a difference between log and log10. What you have done in Excel is actually calculate the log10, because you omitted th...

plus de 6 ans il y a | 2

| A accepté

Réponse apportée
[DISCONTINUED] MATLAB Answers Wish-list #5 (and bug reports)
Another nice-to-have feature: being able to move threads between the answer section and comments without having to repost them. ...

plus de 6 ans il y a | 4

Réponse apportée
Creating a seperate high score file for Matlab game
There are several options to store data. If you need to store it in a file you can either use a mat file (with the save and load...

plus de 6 ans il y a | 0

Réponse apportée
Managing maximum and minimum values ​​in the elements of an matriz.
This should work. The idea is to first find out the base number, adjust the offset if needed, and add the base back. A = [2.1 ...

plus de 6 ans il y a | 0

| A accepté

Réponse apportée
How to create a custom matrix?
This is a simple contatenation: n=8; %generate W and V W=randi(20,n,n); V=randi(5,n,3); output=[zeros(n,3) ; W*V];

plus de 6 ans il y a | 1

| A accepté

Réponse apportée
Close all figures which are not docked
Using the script below I generate the list of properties that are different between docked and undocked figures. After running t...

plus de 6 ans il y a | 2

Réponse apportée
Compatibility : get the Matlab minimum version required to run a program
The only reliable way I have found is to actually test it. An alternative is to carefully read the documentation of every functi...

plus de 6 ans il y a | 1

| A accepté

Réponse apportée
Storage of variables being generated in a loop
The general solution to a problem like this is to put some code around it. The most general solution is to use cell arrays, but ...

plus de 6 ans il y a | 0

Charger plus