Community Profile

photo

HADIMARGO


Last seen: 2年以上 前 2018 年からアクティブ

統計

  • Thankful Level 3

バッジを表示

Content Feed

表示方法

質問


sort the in plot
hi. i have 2 matrix: a = [ 1.2 6 3] b = [ 2 4 5] How do I plot this so that the x and y axes are arranged from less to more?...

2年以上 前 | 1 件の回答 | 0

1

回答

質問


how can i find out how many time my for runs?
so i have a code. i put it in a for loop to repeat it 10.000 Times! I want to know how many times it has been repeated? how c...

3年弱 前 | 1 件の回答 | 0

1

回答

質問


replacing a matrix in loop
hi. i want to replace the matrix a in x(1,i) , when the x(1,i) == 0 and matrix b, when the x(1,i) == 1. how could i do this? c...

3年弱 前 | 2 件の回答 | 0

2

回答

質問


give matrix element in for loop
hi. i want to make this kind of code in matlab: a = [ 1 2 3 ]; b1 = 1; b2 = 3; b3 = 8; for i=1:1:3 a(1,i) = b(i) end ...

3年弱 前 | 1 件の回答 | 0

1

回答

質問


How to Design a lowpass filter by cascading 10 sections of the first-order IIR lowpass filter
I design all of this filter but i can't understand how to make filter cascading 10 section. out teacher said you can conv the t...

3年以上 前 | 1 件の回答 | 0

1

回答

質問


shift to left sequence
hi. i want to shift my sequence to left but there is a problem. clc; clear all; close all; % our domain in 11 n = 0:10; ...

3年以上 前 | 1 件の回答 | 0

1

回答

質問


fourier transform of exp
hi.i want to plot fourier transform of this: my code is this: clc clear all t=-5:0.01:5; y=exp(-0.5*abs(t)); Fs=1; X=...

4年以上 前 | 1 件の回答 | 0

1

回答

質問


convolution of 2 discrete signal
hi. this is my code: clc clear all n=-2:1:12; nx = -2:8 ; nh = 0:12; % Set time vectors for x and h x = usD(n-1) - usD(n...

4年以上 前 | 0 件の回答 | 0

0

回答

質問


property of Dirac delta function in matlab
hey guys! hello i want to plot the property of Dirac delta function in matlab; my uncompleted code: clc clear all t=0:0....

4年以上 前 | 0 件の回答 | 0

0

回答

質問


fourier transform of this:
hi this is my shape that i want it's fourier transform this is my code: clc clear all t=-3:0.0001:3; %x=-heaviside(t+...

4年以上 前 | 1 件の回答 | 0

1

回答

質問


fourier series of this function
i want the fourier seris of function: my code: clear all clc syms x f=(x+2).*(x>-2)-(x+2).*(x>-1)+(1).*(x<=1)-(1).*(x<=-1)...

4年以上 前 | 0 件の回答 | 0

0

回答

質問


plot this alternative function
how could i alternative my function? here is my code: clc clear all t=-5:0.01:5; f=(t+2).*(t>-2)-(t+2).*(t>-1)+(1).*(t<=...

4年以上 前 | 1 件の回答 | 0

1

回答

質問


how to plot this:
hi. this is my code: close all clear all syms t; f=1*(t>=-1 & t<=1); w=pi; FT= int(f*exp(-i*w*t),-inf,inf); ezplo...

5年弱 前 | 0 件の回答 | 0

0

回答

質問


fourier transform of Rectangular pulse
hi guys. i want to find fourier transform of Rectangular pulse with "fourier" order and i wrote this code: close all clear all...

5年弱 前 | 1 件の回答 | 0

1

回答

質問


plot a delta function
hi guys. i want to plot this simple delta function. pls plot this with delta function code.

5年弱 前 | 3 件の回答 | 0

3

回答

質問


how to plot this function

5年弱 前 | 2 件の回答 | 0

2

回答

質問


what is the error Matrix dimensions must agree.?
code: clc clear all; x=linspace(-10,10,1000); t=0:1:20; k=10; l=10; u_x=2*k*x/l.*(x>0 & x<l/2)+2*k*(1-x)/l.*(x>l/2 ...

5年以上 前 | 1 件の回答 | 0

1

回答

質問


how could i animate this?
x=linspace(-5,5,1000); a_n=2; b_n=3; l=10; for n=1:1:10 for t=0:1:10 y=a_n*cos((n*pi*t)/l)+b_n*sin((n*pi*t)/l)...

5年以上 前 | 1 件の回答 | 0

1

回答

質問


how could i animate Fourier series in matlab?
Fourier series is this: for solving i assume : f=sin(x); g=cos(x); N=10; l=10; n=1:N;

5年以上 前 | 0 件の回答 | 0

0

回答

質問


problems of this function
i want to draw this function but my code has an error: code: x=linspace(-5,5,1000); n=double(1:1:100); l=2; f=sin(x); g...

5年以上 前 | 1 件の回答 | 0

1

回答

質問


error: Matrix dimensions must agree
code: x=linspace(-5,5,1000); n=double(1:1:100); l=2; f=sin(x); g=cos(x); s=0; landa=((n*pi)/l ); a=(2/l)*int(f.*sin((...

5年以上 前 | 1 件の回答 | 0

1

回答

質問


how could i animate a series as an animation ?
a function like : just with loop

5年以上 前 | 1 件の回答 | 0

1

回答

回答済み
HOW SHOULD DRAW THIS IN LOOP FORM? WHERE IS THE PROBLEM IN MY CODE?
finally i could write the correct answer! hahaha tnx guys for pushing me lonely! x=linspace(-5,5,1000); s=0; for n=1:1:1...

5年以上 前 | 0

| 採用済み

回答済み
HOW I COULD DRAW THIS FUNCTION
final answer by myself!! x=linspace(-5,5,1000); s=0; for n=1:1:10000 p=((-1)^(n+1)*sin(n*pi*x))/n; s=s+p; end f=(2...

5年以上 前 | 0

| 採用済み

質問


HOW SHOULD DRAW THIS IN LOOP FORM? WHERE IS THE PROBLEM IN MY CODE?
my code: s=0; for n=1:0.01:10 s=s+(-1^n+1*sin(n*pi*x)); end f=(2/pi)*s; plot(x,f) Where is wrong in my code?

5年以上 前 | 2 件の回答 | 0

2

回答

回答済み
HOW I COULD DRAW THIS FUNCTION
can anyone write complete answer with loop?

5年以上 前 | 0

回答済み
HOW I COULD DRAW THIS FUNCTION
my teacher say it isnot correct. you should put it in a loop.

5年以上 前 | 0

質問


HOW I COULD DRAW THIS FUNCTION

5年以上 前 | 4 件の回答 | 0

4

回答