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

circa 5 anni fa | 0

| accettato

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

circa 5 anni fa | 0

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

circa 5 anni fa | 4

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

circa 5 anni fa | 1

| accettato

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

circa 5 anni fa | 0

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

circa 5 anni fa | 0

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

circa 5 anni fa | 0

| accettato

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

circa 5 anni fa | 0

| accettato

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

circa 5 anni fa | 0

| accettato

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

circa 5 anni fa | 0

| accettato

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

circa 5 anni fa | 0

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

circa 5 anni fa | 0

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

circa 5 anni fa | 1

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

circa 5 anni fa | 0

| accettato

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

circa 5 anni fa | 0

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

circa 5 anni fa | 0

| accettato

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

circa 5 anni fa | 0

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

circa 5 anni fa | 0

| accettato

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

circa 5 anni fa | 1

| accettato

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

circa 5 anni fa | 0

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

circa 5 anni fa | 1

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

circa 5 anni fa | 2

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

circa 5 anni fa | 0

| accettato

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

circa 5 anni fa | 0

| accettato

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

circa 5 anni fa | 0

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

circa 5 anni fa | 1

| accettato

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

circa 5 anni fa | 1

| accettato

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

circa 5 anni fa | 0

| accettato

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

circa 5 anni fa | 0

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

circa 5 anni fa | 0

| accettato

Carica altro