질문


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

12년 초과 전 | 답변 수: 0 | 1

0

답변

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

12년 초과 전 | 0

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

12년 초과 전 | 0

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

12년 초과 전 | 0

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

12년 초과 전 | 0

답변 있음
Overlay an image in preview video
TRY : figure, imshow( Your foreground), hold on, preview(vid) ;

12년 초과 전 | 0

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

12년 초과 전 | 1

| 수락됨

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

12년 초과 전 | 0

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

12년 초과 전 | 0

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

12년 초과 전 | 0

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

12년 초과 전 | 0

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

12년 초과 전 | 0

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

12년 초과 전 | 0

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

12년 초과 전 | 1

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

12년 초과 전 | 0

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

12년 초과 전 | 0

| 수락됨

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

12년 초과 전 | 1

| 수락됨

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

12년 초과 전 | 0

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

12년 초과 전 | 0

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

12년 초과 전 | 0

제출됨


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

12년 초과 전 | 다운로드 수: 2 |

0.0 / 5
Thumbnail

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

12년 초과 전 | 0

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

12년 초과 전 | 0

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

12년 초과 전 | 0

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

12년 초과 전 | 0

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

12년 초과 전 | 0

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

12년 초과 전 | 0

| 수락됨

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

12년 초과 전 | 0

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

12년 초과 전 | 0

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

12년 초과 전 | 0

| 수락됨

더 보기