Respondida
F=Kff*uf - Matrix operation
You were almost there: F = [383.02; 321.39; 0;]; Kff = [634.8 -191.2 -353.6; -191.2 447.3 353.6; -353.6 35...

alrededor de 5 años hace | 0

| aceptada

Respondida
Merge binary images and smooth the edges
I'm not getting as smooth as your example, but this should do as a first approximate. IM=imread('https://www.mathworks.com/matl...

alrededor de 5 años hace | 0

Respondida
Turn off "Improve MATLAB by sending user experience" from the command line
Using a function to unwind the settings (casting them to struct), and using comp_struct from the FEX, I found the relevant setti...

alrededor de 5 años hace | 4

Respondida
x,y coordinates of text
You can use the Extent property of the text object to find the corners of your text area. The only thing left to do for you is t...

alrededor de 5 años hace | 1

| aceptada

Respondida
blood vessel segmentation in retinal images
You ran the function without any inputs. You will have to call it with an input, e.g. like this: IM=imread(fullfile('Test Image...

alrededor de 5 años hace | 0

Respondida
how can i find and mark indexes on my data?
The answer is already in your question: you should use the find function on your mci array. For clarity, here are the content...

alrededor de 5 años hace | 0

Respondida
How can I set the table parameter in .txt output
Because you didn't tell Matlab to use 2 spaces in the FormatSpec. Compare the two versions below (the second line is to provide ...

alrededor de 5 años hace | 0

| aceptada

Respondida
Saving .wav file
You're overwriting the song every time this callback is triggered. You should probably store each note to a field of your guidat...

alrededor de 5 años hace | 0

| aceptada

Respondida
Explanation of "Position" in uitable
Since the units are set to Normalized, the units of the Position property are a percentage of the parent object (generally a fig...

alrededor de 5 años hace | 0

| aceptada

Respondida
find previous value in column before specific set value and delete all others
You can use find to create a vector of indices. data=[182 0 195 13 197 2 207 10 210 3 219 9 222 ...

alrededor de 5 años hace | 0

| aceptada

Respondida
insert variable k value into new variable names
Yes: k=1; on{k}=imread(sprintf('on_%d.tif',k)); on{k}=double(on{k}); figure; imshow(on{k}); The main point is to use a cell...

alrededor de 5 años hace | 0

Respondida
How to get specific columns from a csv file and get its average and standard deviation?
Often the answer to 'how to do this' is: break your problem into solvable steps. You need to read your data from a file to a Ma...

alrededor de 5 años hace | 0

Respondida
I would like to compile a text string for each one of the three index of two given arrays
Easy with sprintf: XX=[1,2,3]; YY=[3,2,1]; z=repmat("",size(XX)); FormatSpec='&DEVC ID=''vel_%d'', QUANTITY=''VELOCITY'', AB...

alrededor de 5 años hace | 1

Respondida
Fill in a matrix after an evaluation
I guess boldly: x0_r=rand;y0_r=rand;z0_r=rand; target=rand(6,76+3); accuracy_right = zeros(76,6); for i = 1:1:76 data...

alrededor de 5 años hace | 0

| aceptada

Respondida
How can i convert this string into an input for a function?
ch=['MRWI' 'IDMZ' 'CGBI' 'JKNO']; v=ch.';v=v(:).'; disp(v)

alrededor de 5 años hace | 0

Respondida
error in function that in my version work correctly but in another version work incorrect
You didn't send them a function, but a script. Since R2016b you're allowed to put functions in a script file. The solution is t...

alrededor de 5 años hace | 0

| aceptada

Respondida
Finding 4 closest points
You can design something yourself, but you could also see if fillmissing solves your problem. The documentation suggests it shou...

alrededor de 5 años hace | 0

Respondida
Setting Access Properties to Public without AppDesigner
As you can see <https://www.mathworks.com/matlabcentral/answers/483657-how-to-create-a-gui#answer_412887 here>, class properties...

alrededor de 5 años hace | 0

| aceptada

Respondida
How to calculate the center of white part?
The best way is to use something like regionprops, but since you only have a single patch, you can use find to get a list of coo...

alrededor de 5 años hace | 1

| aceptada

Respondida
how to plot a function
The same as any other function: find a vector of x data and calculate the y data. Then you can use plot. You can use plot3 for x...

alrededor de 5 años hace | 0

Respondida
Nominate yourself to become a member of MathWorks Community Advisory Board
You can find the current members of the MATLAB Central Community Advisory Board on this page. At the bottom of that page, you c...

alrededor de 5 años hace | 1

Respondida
Use API in matlab
You're in luck: NASA decided to provide the data in JSON, and Matlab can parse that JSON output for you: url='https://power.lar...

alrededor de 5 años hace | 2

Respondida
Deployed exe with configuration file
It sounds like you need something very similar to my GetWritableFolder function. You can use the second output to confirm the f...

alrededor de 5 años hace | 0

| aceptada

Respondida
simple calculator using GUI
For general advice and examples for how to create a GUI (and avoid using GUIDE), have look at this thread. Every callback is a ...

alrededor de 5 años hace | 0

| aceptada

Respondida
How I can optimize my code for a stack construct?
Dynamically growing a variable is generally slow, because Matlab needs to copy the entire array. You could pre-allocate a stack...

alrededor de 5 años hace | 0

Respondida
Subset of an array with a moving window
The code below relies on implicit expansion to create an index array, which replicates the results from the inner for-loop. Sinc...

alrededor de 5 años hace | 1

| aceptada

Respondida
How to make a simple grid of coordiantes ?
If you read the documentation, you can see how to plot vectors without plotting connecting lines. As for generating the coordin...

alrededor de 5 años hace | 1

| aceptada

Respondida
Merging existing subplots into a single one
This is a surprisingly difficult task. You will have to copy all objects to the same figure and adapt the Position properties of...

alrededor de 5 años hace | 0

| aceptada

Respondida
How to find the exact answer of an exponential equation?
You can use double to extract a numerical value, but if you're looking for a time, something is going wrong here. The numerical ...

alrededor de 5 años hace | 0

Respondida
How to find maximum value and corresponding x-value of multiple graphs?
This is trivial if you use an array instead of numbered variables: z{1}=zeros(numel(fv),1); z{2}=zeros(numel(fv),1); z{3}=zer...

alrededor de 5 años hace | 0

| aceptada

Cargar más