質問


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

| 採用済み

さらに読み込む