回答済み
How can I interpolate a pressure vector to the surface?
hi, You can use the function *interp2* like in the demo ( type doc interp2) : [X,Y] = meshgrid(-3:.25:3); Z = peaks(X,...

13年弱 前 | 0

| 採用済み

回答済み
Inverse autoconvolution (autocorrelation) solutions space
Dear Jonathan, Do you mean 1/autocorrelation(X)? you have to define the system X, is it 1D,2D signal? Based on the Wiene...

13年弱 前 | 0

回答済み
I made a 2D color plot, how do I turn the plot into an animation or video of the points being put into place? Thanks
hi, If you mean you have a plot from 2 vectors x and y, then you can use the function pause to drawn each point : for n=1...

13年弱 前 | 0

回答済み
I am having problems finding the roots of the following non linear discontinuous equation
hi David, if you have numerical values of the coefficients, you can use the function root instead as in this example : ...

13年弱 前 | 0

回答済み
Hello everyone, I have a matlab problem and I don't know how to go about it.The question goes thus: Using a matlab code prove that for discrete time sinusoids whose frequencies are seperated by an integer multiple of 2*pi are identical. Pleas
hi, I think you mean that *two sinusoidal functions whose phases are separated by integer multiple of 2*pi are identical* : ...

13年弱 前 | 0

| 採用済み

回答済み
can i have a code to filter in the frequency domain that is capable of attenuating the noise in the image ?
hi lona, there is similar question that was solved yesterday, here is the link : <http://www.mathworks.com/matlabcentral/ans...

13年弱 前 | 0

回答済み
frequency domain filter problem ??
hi Maria, Attenuating the noise means you need to design low pass filter, try this method : h=ones(3)/9; You can see...

13年弱 前 | 0

回答済み
I have a problem with converting a differential equation into a function!!!
hi, You can this method first to confirm the result : 1) In M-file you create the function : function dy=My_Functi...

13年弱 前 | 0

回答済み
Need help for ploting 3D graphic
hi Rudi Martin, the two variables x and y have different boundaries, but when you called the command meshgrid, they all have ...

13年弱 前 | 0

回答済み
why exp(a*t) is not equal to ilaplace ((s*i-a)^-1) in matlab
hi Sina, first you have to use the element wise operator in the power : try : syms t s; A=[-3 -1;2 1]; F1=exp(A.*t...

13年弱 前 | 0

回答済み
How to convert binary image to graph?!
hi, You can convert the image to graph by simply plot the result as vector or matrix : I=imread('circuit.tif'); figur...

13年弱 前 | 1

回答済み
dbstop if error: manually fixing the error and continue?
hi, Yes, if you put the command *dbstop if error* at the top of the M-file and run your code, when the compiler finds the err...

13年弱 前 | 2

回答済み
Equivalent of beta functions
hi, Concerning the function beta, you can use the gamma function, do you have access to the gamma function? anyway: BETA...

13年弱 前 | 0

回答済み
Why does running my mex function cause matlab to shutdown?
hi, One probable reason is that the name of your function already exists in Mat built-in functions directory, check the name of...

13年弱 前 | 0

回答済み
Does anybody know the mathematical model of a 3-DOF helicopter and matlab codes
hi Kalenjit, As a first answer, i remember i have seen a similar example but i do not remember where, the author used Mathwor...

13年弱 前 | 0

回答済み
How to use "Hotelling Transform equation" to have new 3D image representation ??!
hi Mariam, This question should be treated by Image processing specialist, however there a link that provides some informatio...

13年弱 前 | 0

回答済み
Splitting an axis into a linear and log scale
hi Senaasa, There must a sophisticated way to produce such arrangement, that method is used in many papers related to geophys...

13年弱 前 | 0

回答済み
How to understand firefly algorithm
hi, No need to search for Review /research articles , here is the algorithm found in Wikipedia : <http://en.wikipedia.org/...

13年弱 前 | 0

| 採用済み

回答済み
I need help using the feval command
hi, To analyze your function, you must add the element wise operator to avoid the error of ' Matrix must be square', here is a...

13年弱 前 | 0

| 採用済み

回答済み
how to create a histogram of R,G,B
hi, You mean putting them on one figure, with each component its corresponding color : I=imread('autumn.tif'); R=imhist...

13年弱 前 | 2

回答済み
the mat lab code for this signal
hi miraf, The signal you described f(t)=t, is not periodic, while the Fourier Development states that in order to apply the I...

13年弱 前 | 0

回答済み
"text" handle, how do I grab all text and rotate it in a figure?
Michael, The default rotation in text is 0°. The text properties can be adjusted as the following example : plot(randn(1...

13年弱 前 | 11

| 採用済み

回答済み
First order Markov chains
hi olig, You can try to use the function "HMMESTIMATE" which a default Matlab function : As an example, we take a sequence...

13年弱 前 | 0

| 採用済み

回答済み
How to Convert 2D matrix to 3D with time as 3rd dimension
hi, You can the method provided above, but the function "toc" may have problems , i propose using an integer variable , here ...

13年弱 前 | 0

回答済み
Search and delete row from cell array
try this example : % gievn your cell C %A=cell2mat(C); % simulating your data A=randn(10); A(4,6)=0; % zero A(7,6...

13年弱 前 | 0

送信済み


Viscous Flow in pipe : Velocity profile
Computing the Velocity profile of viscous fluid in pipe based on 5 inputs (Pa,Pb,mu,R,l)

13年弱 前 | ダウンロード 1 件 |

0.0 / 5
Thumbnail

回答済み
How to find curvature as a function of temperature
hi, You computed the curvature as function of temperature , then you have the initial and final values of the temperature, yo...

13年弱 前 | 0

回答済み
how to compute and plot results for three different frequency vector ?
hi, you can plot your three signals in the same graph using subplot command as this example : r1=randn(100,1); r2=rand(10...

13年弱 前 | 0

回答済み
why PSD is different?
hi, They are the same with your approach here is an example : x=sin(2*pi*40*(0:1/90:10)); [rxx lags]=xcorr(x) X=fft(x,...

13年弱 前 | 0

回答済み
how to remove unwanted signal
hi, One you know the mathematical formula of the square pulse you subtract it from your signal, or transform you signal into ...

13年弱 前 | 0

さらに読み込む