답변 있음
3-Dimensional Shortest Path
You are in luck. I have just released a code that does the very exact thing you want to the FileExchange. If you really need to ...

거의 10년 전 | 0

| 수락됨

답변 있음
Read different file in certain category
Grab a list of all the folders in a given month using something like: files = dir('198001*'); Check MATLAB Regex for mor...

거의 10년 전 | 0

| 수락됨

답변 있음
Fitting probability distributions to the data (allfitdist)
It is probably a result of changes in default behavior across MATLAB versions. You are getting that, because the log likelihood ...

거의 10년 전 | 2

| 수락됨

제출됨


plywrite
Export data to ply format.

거의 10년 전 | 다운로드 수: 4 |

5.0 / 5
Thumbnail

답변 있음
Save image from function with imwrite in other function
You need to write something along the lines of: imsave(handles.axes4); Under a pushbutton object.

10년 초과 전 | 0

답변 있음
How do I delete repetitions of rows in a matrix?
C = unique(A,'rows')

10년 초과 전 | 0

| 수락됨

답변 있음
How to evaluate mean for column
Below does the example you listed, change the value 1 to do the others. mean(A(B==1))

10년 초과 전 | 0

답변 있음
what's wrong here? I have copied this code from my textbook and it's not working
Your problem is here: insearch (@x sin(10*x)+cos(3*x),min,max,ans) It is NOT: @x sin(10*x)+cos(3*x) It is: @(x...

10년 초과 전 | 0

답변 있음
How can I improve my code by using logical indexing instead of "find" function.
There are many many ways to improve that code, but the specific error you are talking about refers to: estErr(i,find(SS==sig...

10년 초과 전 | 0

| 수락됨

답변 있음
Histogram with counting number of "1" per bin
A trick for that would be to covert that data into this: B=[120, 130, 145, 160, 95, 105, 110, 150]; basically keeping the...

10년 초과 전 | 0

답변 있음
how to cut part of an image ?
This might not be the most robust way to do it, but create a mask matrix with that red boundary as 1s and everywhere else 0. The...

10년 초과 전 | 0

답변 있음
Matlab Surface: Assign different color for specific portions of the graph.
How about: x = [0:50]; y = [0:50]; Test1 = @(x,y) x.^2+y.^2; [X1,Y1] = meshgrid(x,y); Z1 = Test1(X1,Y1); s1 ...

10년 초과 전 | 1

답변 있음
How to solve error A and B must be floating point scalar?
You are using the wrong integral function. Symbolic integrals are calculated using 'int' instead. So keep your h as an expressio...

10년 초과 전 | 1

| 수락됨

답변 있음
Fourier Series plotting in matlab
Is this what you are looking for? There are better ways to do it, but for now focus on learning how the figure, plot and hold co...

10년 초과 전 | 1

답변 있음
basic plotting need help
This might not be your only problem, but if o0 is a row vector as you wrote there, you have: w*w*wo*wo as a term, where w...

10년 초과 전 | 0

답변 있음
CSV file read and disassemble information
You cannot use dlmread or csvread for mixed format files. To my best knowledge your best chance is a table: T = readtable('f...

10년 초과 전 | 0

답변 있음
How can I identify and remove noises from this image?
The black stain on the right needs fabrication of information to get rid of completely, it looks damaged beyond simple recovery....

10년 초과 전 | 0

| 수락됨

답변 있음
how make x and y -axis labels(titles) for histogram of an image?
This sometimes happens to me too. The problem is xlabel sometimes get stuck BEHIND the imhist colorbar at the bottom. To fix it ...

10년 초과 전 | 1

답변 있음
Detecting Bubbles Using Image Segmentation
Here is what worked for me for the above image: 1) Crop the scale bar. 2) Remove the shadow gradient. 3) Simple thresho...

10년 초과 전 | 1

답변 있음
Difference between a<t<b and t>a && t<b
might be because you are supposed to write: *t(i)>=0 && t(i)<pi* NOT: *0>=t(i) && t(i)<pi*

10년 초과 전 | 1

답변 있음
How to curve fit 4D data?
If your curves will be polynomials, try my FEX function MultiPolyRegress. It also provides a fairly rich set of goodness of fit ...

10년 초과 전 | 2

| 수락됨

답변 있음
Scaling problem from Fourier continuous transformate via IFFT
Just a quick thought without inspecting the code, so this might not be the case, or the only problem: Check if the signal from t...

10년 초과 전 | 0

답변 있음
How can I use pcolor for rings ?
I am not sure what the question here is. If all you need to check is whether there is a correlation between mean depth and radiu...

10년 초과 전 | 0

답변 있음
add colorbar to clustergram from within script
Nevermind colorbar doesn't work, check below for a work around that worked for me: http://www.mathworks.com/matlabcentral/ans...

거의 11년 전 | 0

답변 있음
make clustergram without printing
Try starting MATLAB with: matlab -noFigureWindows

거의 11년 전 | 2

답변 있음
What does the following error mean? Undefined function 'diffjac' for input arguments of type 'function_handle'. Error in Heq_Nwt (line 23) df = diffjac(x1,f,f0)
diffjac.m and dirder.m works perfectly fine for me. Your inputs must be different than intended.

거의 11년 전 | 0

답변 있음
How can I create a matrix of N columns formed by just one vector?
for a row vector concatenated vertically: A=repmat(vector,[1000 1]); for a column vector concatenated horizontally: A...

거의 11년 전 | 0

| 수락됨

답변 있음
how to normalize the image please provide the code for it
Since you graced us with absolutely no specifics, I am assuming you are looking for the simplest take on the term image normaliz...

거의 11년 전 | 0

| 수락됨

답변 있음
tridiagonal matrix with a corner entry from upper diagonal
Check out spdiags and diag functions for a much easier way to do this.

거의 11년 전 | 0

더 보기