답변 있음
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...

거의 5년 전 | 0

답변 있음
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...

거의 5년 전 | 4

답변 있음
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...

거의 5년 전 | 1

| 수락됨

답변 있음
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...

거의 5년 전 | 0

답변 있음
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...

거의 5년 전 | 0

답변 있음
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 ...

거의 5년 전 | 0

| 수락됨

답변 있음
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...

거의 5년 전 | 0

| 수락됨

답변 있음
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...

거의 5년 전 | 0

| 수락됨

답변 있음
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 ...

거의 5년 전 | 0

| 수락됨

답변 있음
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...

거의 5년 전 | 0

답변 있음
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...

거의 5년 전 | 0

답변 있음
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...

거의 5년 전 | 1

답변 있음
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...

거의 5년 전 | 0

| 수락됨

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

거의 5년 전 | 0

답변 있음
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...

거의 5년 전 | 0

| 수락됨

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

거의 5년 전 | 0

답변 있음
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...

거의 5년 전 | 0

| 수락됨

답변 있음
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...

거의 5년 전 | 1

| 수락됨

답변 있음
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...

거의 5년 전 | 0

답변 있음
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...

거의 5년 전 | 1

답변 있음
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...

거의 5년 전 | 2

답변 있음
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...

거의 5년 전 | 0

| 수락됨

답변 있음
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 ...

거의 5년 전 | 0

| 수락됨

답변 있음
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...

거의 5년 전 | 0

답변 있음
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...

거의 5년 전 | 1

| 수락됨

답변 있음
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...

거의 5년 전 | 1

| 수락됨

답변 있음
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...

거의 5년 전 | 0

| 수락됨

답변 있음
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 ...

거의 5년 전 | 0

답변 있음
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...

거의 5년 전 | 0

| 수락됨

답변 있음
Tips on combining while loop
You were creating a function, why not make that explicit? %Pohlhausen/thwaites polynomial %clear;clc;close; % ^^^^^^ you do...

거의 5년 전 | 0

더 보기