답변 있음
solve any amount of systems of linear equations
Well, this sounds like a task from introduction to linear algebra, so have a read-up on over-determined problems, and under-dete...

9년 초과 전 | 0

답변 있음
Image Normalization between range 0 - 1
It sounds like you need to ask your advisor what he wants. In my not necessarily humble opinion images ought to contain differen...

9년 초과 전 | 1

답변 있음
fminsearch with vector function and vector output
For that function it is rather trivial, so you wouldn't need numerical methods. For a more general function f(x,a) it might ...

9년 초과 전 | 0

답변 있음
how can i determined the spectrum of potential for a finite well
Well, to me it sounds like homework on quantum mechanics, so my suggestion is that you read the relevant chapter. In case you ne...

거의 10년 전 | 0

답변 있음
What is best practice to determine if input is a figure or axes handle?
Simples, write those functions yourself, something along the lines: function OK = isfigure(h) if strcmp(get(h,'type'),...

거의 10년 전 | 0

| 수락됨

답변 있음
My files are a mess, please help
In addition to the above answer I'd like to add a few more points. # you write functions for a couple of reasons, one of the ...

거의 10년 전 | 0

답변 있음
Plotting in GUI of Matlab
Keep the handles to the axes you create: axs(1) = subplot(1,2,1); axs(2) = subplot(1,2,2); Then make the axes you wan...

거의 10년 전 | 0

답변 있음
I want to hold legends from different callback on same plot.
It seems that you might get what you want with the <http://se.mathworks.com/matlabcentral/fileexchange/31092-legendflex-m--a-mor...

거의 10년 전 | 0

답변 있음
How to numerically determine parameters to make solution of differential equation equal to zero at a certain point?
The part with "Some parameters in the differential equation include randomly varying values at different values of x" sounds a b...

거의 10년 전 | 0

| 수락됨

답변 있음
Tangent line between 2 points in 3D
Well, you get the equation for the line between 2 points like this: r1 = [x1,y1,z1]; % First point r2 = [x2,y2,z2]; % se...

거의 10년 전 | 0

| 수락됨

답변 있음
Same optimization algorithm but different results?
We ran into similar results using fminsearch. This was for matlab-versions from around 2010-2011, and we boiled our problems dow...

거의 10년 전 | 0

답변 있음
Solving a coupled system of differential equations with matrix form!!
Sure, Lets introduce a new variable z such that z(1) = y; z(2) = v; Then we have for Dz: Dz(1) = z(2); ...

거의 10년 전 | 0

| 수락됨

답변 있음
Solving a system of linear inequalities
...or if you want all points that satisfy the conditions you could do: D = {[0 1],[0 1],[0 1],[0 1],[0 1],[0 1],[0 1]}; ...

거의 10년 전 | 0

답변 있음
Hi, how can I make my short time fourier transform function please help me
Simple: edit spectrogram HTH

대략 10년 전 | 0

답변 있음
using a color map in a subplot
To me it sounds like you should use cmlines - a function that you can find in this file exchange submission: <http://se.mathw...

대략 10년 전 | 0

답변 있음
Noise samples of gaussian mixture distribution
For any given u between 0 and 1/2 this looks like the sum of 2 zero-centred normal-distributions (however there seems to me that...

대략 10년 전 | 0

답변 있음
Is there an algorithm/ way to get user defined pseudo inverse of a matrix?
Sure, have a good look at this excellent submission on solutions of inverse problems: <http://se.mathworks.com/matlabcentral/fil...

대략 10년 전 | 2

답변 있음
sub histogram from histogram
Perhaps something like: for i1 = 1:size(a,2) [H1{i1},H2{i1}] = hist(a(:,i1)); end stairs(H2{2},H1{2}) hold ...

대략 10년 전 | 0

| 수락됨

답변 있음
output seems incorrect of Cartesian to Polar conversion
Your first and major problems are that # you use the interpolation in the wrong direction # your Cartesian coordinates are n...

대략 10년 전 | 0

답변 있음
Can I plot eigenvalues corresponding to certain eigenvectors?
Well first you have to remember that the eigenvectors doesn't necessarily exactly match your desired one, so you'll have to be p...

대략 10년 전 | 0

| 수락됨

답변 있음
how to read last few rows/lines from a text file ?
If you can use something like this much is won: [q,w] = system(['tail -n ',num2str(nr_of_lines_to_read),' ',filename]); ...

대략 10년 전 | 2

답변 있음
Constrained Optimisation in MATLAB
It seems your source code is different again from what you seem to want to do. I'll assume that the problem you want to solve...

대략 10년 전 | 0

답변 있음
How to solve improper integral '1/sin(x)' at region with variables
For rational functions of trigonometric functions use the substitution z = tan(x/2) - see for example: <http://www-math.mit.e...

대략 10년 전 | 0

| 수락됨

답변 있음
Constrained Optimisation in MATLAB
Have a look at fmincon or if you don't have the optimization toolbox, you can find several useful entries at the file e...

대략 10년 전 | 0

답변 있음
Polynomial Regression filter implementation
First have a look at sgolayfilt If you need to filter images and it's not enough to apply sgolayfilt along either dire...

대략 10년 전 | 0

답변 있음
How to input crank nicolson into matlab?
Crank-Nicolson is for partial differential equations, this seems to be ordinary differential equations. Perhaps try matlabs ode2...

대략 10년 전 | 0

답변 있음
non linear minimization problem
Am I correct in interpreting R+ as the N-dimensional positive real number sub-space? And you want to minimize E for a, b, and c...

대략 10년 전 | 0

답변 있음
3D Matrix containing floating point values of intensity (FDK CT data), how to visualize in 3D in MATLAB?
Well, I guess you could use the vol3d tool by simply replicating your 3-D array into each R, G and B layer of the required 4-D s...

대략 10년 전 | 0

| 수락됨

답변 있음
How do I shift the origin in my scatter plot from (0,0) to (1,1)? Alternately, I am fine with a vertical and horizontal lines at (1,1). Please help!
Perhaps you find this file exchange submission useful: <http://se.mathworks.com/matlabcentral/fileexchange/54326-axes0 axes-0...

대략 10년 전 | 0

답변 있음
why we are going for gabor filter?? what is the process involved in gabor filter? what are the different method for feature extration??
Well I've not read your "many papers" so I cannot tell why they do. Perhaps you can get a brief introduction here: <https://en.w...

대략 10년 전 | 0

더 보기