Beantwortet
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...

fast 7 Jahre vor | 0

Beantwortet
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...

fast 7 Jahre vor | 3

| akzeptiert

Beantwortet
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...

fast 7 Jahre vor | 1

Beantwortet
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...

fast 7 Jahre vor | 0

Beantwortet
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...

fast 7 Jahre vor | 0

| akzeptiert

Beantwortet
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...

fast 7 Jahre vor | 1

| akzeptiert

Beantwortet
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=...

fast 7 Jahre vor | 0

| akzeptiert

Beantwortet
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...

fast 7 Jahre vor | 0

Beantwortet
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...

fast 7 Jahre vor | 0

Beantwortet
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...

fast 7 Jahre vor | 1

Beantwortet
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...

fast 7 Jahre vor | 0

Beantwortet
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 ...

fast 7 Jahre vor | 0

| akzeptiert

Beantwortet
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...

fast 7 Jahre vor | 0

Beantwortet
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...

fast 7 Jahre vor | 0

Beantwortet
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...

fast 7 Jahre vor | 0

Beantwortet
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...

fast 7 Jahre vor | 1

Beantwortet
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...

fast 7 Jahre vor | 0

Beantwortet
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...

fast 7 Jahre vor | 0

Beantwortet
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...

fast 7 Jahre vor | 0

| akzeptiert

Beantwortet
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...

fast 7 Jahre vor | 0

| akzeptiert

Beantwortet
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...

fast 7 Jahre vor | 1

Beantwortet
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 ...

fast 7 Jahre vor | 0

| akzeptiert

Beantwortet
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...

fast 7 Jahre vor | 2

| akzeptiert

Beantwortet
[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. ...

fast 7 Jahre vor | 4

Beantwortet
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...

fast 7 Jahre vor | 0

Beantwortet
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 ...

fast 7 Jahre vor | 0

| akzeptiert

Beantwortet
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];

fast 7 Jahre vor | 1

| akzeptiert

Beantwortet
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...

fast 7 Jahre vor | 2

Beantwortet
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...

fast 7 Jahre vor | 1

| akzeptiert

Beantwortet
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 ...

fast 7 Jahre vor | 0

Mehr laden