Frage


Statistics : Data binning vs increased size
Dear Users, Suppose you have data that is recorded daily( lets say a temperature in different places over 4 years), each time...

mehr als 12 Jahre vor | 0 Antworten | 1

0

Antworten

Beantwortet
How can I calculate a dirac function of 2D discrete signal
hi @Wayne King gave you the kernel of the problem, here is another way out: H=0*meshgrid(linspace(-0.5,0.5,20)); H(floo...

mehr als 12 Jahre vor | 0

Beantwortet
Plot a family of circles in 3D
Sniriza, I agree with Harsheel, or you can simply add a minus to z : z = -(100 * r * ones(1, length(t)));

mehr als 12 Jahre vor | 0

Beantwortet
Convert to monochromatic & Recognize centroid and radii
Micheal, The only contribution i can offer is like this : i think the centroid function is in the Image processing ToolBox, b...

mehr als 12 Jahre vor | 0

Beantwortet
Plotting E - e*sin[E] = M as E vs M, when given e as 5 different values [0 0.25 0.5 0.75 1]?
Daniel, i find this issue not clear at all, besides you have to to give some Physical explanations about the constants, M as *me...

mehr als 12 Jahre vor | 0

Beantwortet
Overlay an image in preview video
TRY : figure, imshow( Your foreground), hold on, preview(vid) ;

mehr als 12 Jahre vor | 0

Beantwortet
Why am I getting this error and how can I fix it?
F is 2x1 vector so as the input x, the starting points are set in x0, and F(-5) has no sense because the index of vector start...

mehr als 12 Jahre vor | 1

| akzeptiert

Beantwortet
How to solve 2-D steady state heat conduction problem in MATLAB ?
2D PDE can be solved using function : *pdepe* or by using old routines, Take a look at my submission for beginning : <http:...

mehr als 12 Jahre vor | 0

Beantwortet
How can I use pdepe to solve a PDE with an integral boundary condition?
hi, take a look at the file,

mehr als 12 Jahre vor | 0

Beantwortet
Latex Support to publish in html format
Alessio The right and left parenthesis are maybe not recognized , try directly this command : >>text(0.5,0.5,'\int_{E}f ...

mehr als 12 Jahre vor | 0

Beantwortet
plot response for a step change in input
Jason, You did not give details about the nature of the system, ( low pass, high pass,...). The Fourier transform of the squar...

mehr als 12 Jahre vor | 0

Beantwortet
How can I use pdepe to solve a PDE with an integral boundary condition?
why not solve, first, for u(0,t) for known x0 and xf, using *integral* or *quad* or *trapz* next follow the routine ?

mehr als 12 Jahre vor | 0

Beantwortet
how to do something like A(:,B(:)) ?
you can create your vectors as the following : C1=A(:,B(1)); C2=A(:,B(2)); C4=A(:,B(4));

mehr als 12 Jahre vor | 0

Beantwortet
add data points to a graph
you have to know the xy coordinates of those points to mark them . suppose i have a graph Y(X) : X=1:10;Y=randn(1,10); p...

mehr als 12 Jahre vor | 1

Beantwortet
How can I get "P" for each Gas
R = 0.08206; T = 300; V = 20*ones(5,1); Table = {'GasName','GasSymb','a','b';... [ 'Helium', 'Hydrogen', 'Oxygen', 'Ch...

mehr als 12 Jahre vor | 0

Beantwortet
Summation for series (symsum function), only want odd numbers
That is Square function ,the task needs skills, you can try loop , it is possible to work : syms x n SUM=0; a=1:2:9; F=0...

mehr als 12 Jahre vor | 0

| akzeptiert

Beantwortet
How do I find the even and odd elements in a vector?
hi Paul, thats good as you created random 50,100, that first step is important, odd and even are related to Modulus, even...

mehr als 12 Jahre vor | 1

| akzeptiert

Beantwortet
Corrcoef creating NaNs from datasets with no NaNs
hi, because your data contain similar values, here is an example : corrcoef([ones(4,1) ones(4,1)])

mehr als 12 Jahre vor | 0

Beantwortet
Wind and temperature divided into speed and temp
Jenny, try this version , wind=round(20*rand(20,1)); % arbitrary wind time series . temp=round(10*randn(30,1)); %arbitrar...

mehr als 12 Jahre vor | 0

Beantwortet
ANY MATLAB CODE FOR GAUSSIAN BEAM PROPAGATION IN A OPTICAL FIBER
you can try this submission : <http://www.mathworks.com/matlabcentral/fileexchange/14887-finite-difference-beam-propagation-met...

mehr als 12 Jahre vor | 0

Gesendet


Ferrofluid : pseudo simulation
Pseudo simulation of liquid magnet , first version .

mehr als 12 Jahre vor | 2 Downloads |

0.0 / 5
Thumbnail

Beantwortet
change picture into grayscale and keep the luminace...same
Xu, the only contribution i can made here is that , as you have N samples, you have to *normalize* them, i mean after convert...

mehr als 12 Jahre vor | 0

Beantwortet
How to calculate distance between 2 complex points?
Jean luc, you can perform the task without using the pdist function, here is version : S1=[1.00 - 1.00i, -1.00 - 1.00i, -1.0...

mehr als 12 Jahre vor | 0

Beantwortet
How to perform an inverse laplace transform?
Mike,laplace function is working on symbolic variables, try to use *ifft* instead , as long as there is no alternative . >>Y...

mehr als 12 Jahre vor | 0

Beantwortet
How to compute and plot a Spectrogram?
try to use help, like abdelmalek answered, or use the function directly : >>spectrogram(randn(200,1)); % white noise

mehr als 12 Jahre vor | 0

Beantwortet
Find max, min and create array C
you can start by creating a temporary variable *B=A(:,end)*, next you can use *max(B)* and *min(B)* or you can use the function ...

mehr als 12 Jahre vor | 0

Beantwortet
normal distribution from data
Here is another suggestion: y=pdf('Normal',x,m,s); plot(x,y);

mehr als 12 Jahre vor | 0

| akzeptiert

Beantwortet
first time using matlab, how can i use solve to find the equilibrium solutions of the differential equation, y` = -( 3 - y ) y
Like @the cylist said, try ode23 or ode45, but you did not mention the initial condition : function dy=Myfunction(t,y) dy(...

mehr als 12 Jahre vor | 0

Beantwortet
question on generating random numbers
John Using random permutation can be helpful, start from this prototype : S=cell(10,1); for n=1:10 S{n}=randperm(10);...

mehr als 12 Jahre vor | 0

Beantwortet
Can the same words at different time from a single person be the same or approximatly the same, using sound processing on mathlab?
adenew, There is discipline in signal processing and audio engineering specialized with this type of application, many method...

mehr als 12 Jahre vor | 0

| akzeptiert

Mehr laden