回答済み
How to determine the magnetic field in a round circuit using biot-savart law
The magnetic field *B(r)* is perpendicular to the the circle, hence it depends on the altitude z, but suppose that we want to ev...

約12年 前 | 1

回答済み
How can I add the arrow to the graph like this picture ?
Nguyen, That is thermodynamic cycle, there might be a solution, however try this temporary example : X=[2 4 4 2 2]; Y=[2 ...

約12年 前 | 1

回答済み
How to Plot the discrete Fourier transform on an image ?
%a I=I=im2double(imread('circuit.tif')); %b F=fftshift(fft2(I)); % surface(abs(F)) %c plot(abs(F)) ...

約12年 前 | 1

回答済み
how to find fourier transformation in intensity values
engineer 01, If you have one dimensional signal, you can use *fft(signal,N)* with N being the number of points for evaluating...

約12年 前 | 0

| 採用済み

回答済み
How to Make a function accept vector inputs
You did not specify how the output should be , 1x1 or Nx1 , you can try this way : function Ml = myseries(t) n=0; ctr=1;...

約12年 前 | 1

| 採用済み

回答済み
how to use Arrays for plotting curves in for loop
kiran, that can be done efficiently if you store all the ys in one matrix : t=0:0.1:6; y=zeros(length(t),3); y(:,1)=sin...

約12年 前 | 1

| 採用済み

回答済み
Find angle between dots
hi, Computing the angle require the scalar product between the points, so you need to know the coordinate of the white dots, he...

約12年 前 | 0

回答済み
Surface plot of PDE numeric solution
Danila, I tried to examine you solution, the first thing is that r0,r1,r2 and r3 are not provided , plus a variable mu is not d...

約12年 前 | 0

| 採用済み

回答済み
ground motion velocity in matlab
if you have the acceleration vector , you can integrate it to get the velocity, here is a simple example : t=0:0.1:2; % tim...

約12年 前 | 0

| 採用済み

回答済み
on the image window output shows repeatation of image
hi, The code you provided is working correctly, but you did not exploit the matrix operations effectively, here is simpler ve...

約12年 前 | 0

回答済み
issue in matrix multiplication
G is 4x12 and m is 1x4, then two possibilities : m*G G'*m' You do not get binary result because of the multiplication c...

約12年 前 | 0

| 採用済み

回答済み
Taylor series method for 2 coupled ODEs and I'm confused!!!
Jesse, i think you should add the index to the two solutions, try : h = 0.01; x1 = 2.37; x2 = -3.48; t = -1; for i=...

約12年 前 | 0

| 採用済み

回答済み
Designing a lowpass filter in matlab
there is a filter design functions , you can start with the simplest function as follows : % given you sampling frequen...

12年以上 前 | 0

| 採用済み

回答済み
Why isn't array division commutative?
Andre, you mean that a1 and a2 are linearly dependent? then you divide a2 by a1 you obtain a matrix , the diagonal of that matr...

12年以上 前 | 0

回答済み
compute the ideal impulse
try this function : function F = ideallp(wc,N); t = (N-1)/2; x = [0: (N-1)]; m = x - t + e...

12年以上 前 | 0

回答済み
power spectral density PSD?
You can try this way : t=linspace(0,1,33);% 1 seconde Fs=inv(t(3)-t(2)); f=Fs/10; P=13; % number of signals X=zeros(33,P...

12年以上 前 | 2

| 採用済み

回答済み
can anyone demo me how to do a tamper localization?
hi, That is new field to me, let us try to apply what @Image Analyst described as an example : X=im2double(imread('circu...

12年以上 前 | 0

回答済み
find values around a given row value
you can use minimum absolute value as the following : % data generation p1=2.5;p2=2.35; A=ones(600,2); A(:,1)=A(:,1)*p...

12年以上 前 | 0

回答済み
Numerical integral calculation on GPU
hi, there are functions that are open source, letting the author to edit them, others are built in like fft as example. The int...

12年以上 前 | 0

回答済み
Creating user defined variables and solving systems with a script
Use input: K=input(' Enter matrix :\n'); % You enter the K(i,j) as :[4 5 8 7;2 3 6 5] then K is the entered matrix

12年以上 前 | 0

回答済み
please help>>>how to fix (Matrix dimensions must agree.) error in matlab?
hi Asma, the number of columns of WindowI must be the same as the number of lines in WindowH, take the two blocks with same d...

12年以上 前 | 0

回答済み
Convert Image Sequence to Video
you can simply try : fileNames = dir(fullfile('C:\...\Cell Images','*.jpg')); N = length(fileNames); for k = 1:N ...

12年以上 前 | 0

| 採用済み

回答済み
FFT, Periodogram difference, Power Spectral Density Representation and Effect of Hilbert Trasnform to PSD
hans, If you are treating narrow band signals then FFT or pwelch as said by Andrew is sufficient, but for wideband signals, you...

12年以上 前 | 0

| 採用済み

回答済み
Two-side spectrum in Matlab
You can start by many tutorials, each offers a different approach to the DFT problem, in terms of resolution and amplitude estim...

12年以上 前 | 1

回答済み
Matrix transformstion need help
Matrix transformation depends on size, if you are working on two dimensional space, then vectors X,Y must be 2x1 : here is an e...

12年以上 前 | 0

回答済み
how to add white noise to signal
hi, Azzi mentioned a good point about the seed and about the signals noise, for this its better to work with signal to noise ra...

12年以上 前 | 0

| 採用済み

回答済み
Simple question, How to find one variable from a equation.
hi,are all the variables defined, because d1 d2 are missing , if you find d1 or d2 then v can be found by two ways : POL=[...

12年以上 前 | 0

| 採用済み

回答済み
How can I calculate the mean of a particular number of video frames?
hi, if it is grayscale Video then : [m,n,p]=size(X); MEAN=zeros(1,p); for x=1:p MEAN(x)=mean(X(:,:,x)); end ...

12年以上 前 | 0

回答済み
Function for summing an infinite series using for-end loops
Chris, You can start by differentiating between names of input and output variables , then only S is your output : funct...

12年以上 前 | 0

回答済み
How can I determine what matrix is needed to flip an image upside down?
Generally that type of matrices are for euclidean space where a vector or a set of vector can be rotated with a cos and sin rota...

12年以上 前 | 0

さらに読み込む