![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/20695273_1608638201079_DEF.jpg)
Kutlu Yigitturk
Followers: 0 Following: 0
Statistik
18 Fragen
0 Antworten
RANG
13.718
of 297.016
REPUTATION
3
BEITRÄGE
18 Fragen
0 Antworten
ANTWORTZUSTIMMUNG
55.56%
ERHALTENE STIMMEN
3
RANG
of 20.419
REPUTATION
N/A
DURCHSCHNITTLICHE BEWERTUNG
0.00
BEITRÄGE
0 Dateien
DOWNLOADS
0
ALL TIME DOWNLOADS
0
RANG
of 157.725
BEITRÄGE
0 Probleme
0 Lösungen
PUNKTESTAND
0
ANZAHL DER ABZEICHEN
0
BEITRÄGE
0 Beiträge
BEITRÄGE
0 Öffentlich Kanäle
DURCHSCHNITTLICHE BEWERTUNG
BEITRÄGE
0 Highlights
DURCHSCHNITTLICHE ANZAHL DER LIKES
Feeds
Frage
Electromotive Force Voltage Example
B = [0 0 1]'; v = [0 1 0]'; length = [1 1 1]'; length = length/norm(length); eVec = cross(v,B); eMag = dot(eVec,length); az = 5...
mehr als 3 Jahre vor | 1 Antwort | 0
1
AntwortFrage
Electromotive force (voltage)
This Matlab program below implements the two operations, print the eVec& eMag and animate the Faraday’s law for any specified v,...
mehr als 3 Jahre vor | 0 Antworten | 0
0
AntwortenFrage
Improving the Resolution in FFT
I need to get an output like below. But this is the output I get as a result of the code I wrote. clc clear all close all ...
mehr als 3 Jahre vor | 1 Antwort | 0
1
AntwortFrage
Fourier Transform of a Signal
Inspired by the codes written by Sulaymon Eshkabilov, I created such a code block. But I can't get an output like below, where c...
mehr als 3 Jahre vor | 0 Antworten | 0
0
AntwortenFrage
Fourier Transform of a random Signal
t = 0 : 0.001 : 2; x = (2*(exp(-4*t))).*(cos(10*t).*unit(t)) subplot(2,1,1) plot(t,x) grid I wrote such a code for th...
mehr als 3 Jahre vor | 1 Antwort | 0
1
AntwortFrage
Fourier Transform of Rectangular Pulse
clear all close all clc %fs = 500; T = 1; t = -2.5 : 0.001 : 2.5; x = rectpuls(t,T); subplot(2,1,1) plot(t,x,'r','...
mehr als 3 Jahre vor | 1 Antwort | 0
1
AntwortFrage
CT & Discrete-Time Systems Series RC Circuit
I have a question as shown in the figure above. I wrote the code below but I know it's not correct. How do I fix this problem....
fast 4 Jahre vor | 0 Antworten | 0
0
AntwortenFrage
The N-Point Moving Average (MA) Filter
- Write a Matlab code to load the input signal x[n], clc clear all close all N = input('Enter Order of Filter: '); n =...
fast 4 Jahre vor | 1 Antwort | 0
1
AntwortFrage
Ordinary Differential Equations (ODEs)
syms t y(t) ysol=dsolve(' D2y + Dy + 4.25*y = 0','y(0)=2','Dy(0)=1'); y(t)=simplify(ysol) ezplot(y(t),[0 10]); xlabel('t'); ...
fast 4 Jahre vor | 1 Antwort | 0
1
AntwortFrage
Error of sym>convertChar
How can I solve this problem? Thanks a lot.
fast 4 Jahre vor | 1 Antwort | 0
1
AntwortFrage
Calculating Electric dipole using Coulomb's law with Quiver
Below is the code block that calculates Electric Fields due to dipoles in a 2 dimensional plane using Coulomb's Law. I need 'Qui...
fast 4 Jahre vor | 2 Antworten | 0
2
AntwortenFrage
How Define Delta Function
I have a problem about calculating with Delta Function. I am trying write matlab code for these function. I wrote the followi...
fast 4 Jahre vor | 1 Antwort | 0
1
AntwortFrage
How to convert these equation to MATLab code
How do I convert this math formula to matlab code? I've been working for a long time but I haven't got any results. Thank you ...
fast 4 Jahre vor | 1 Antwort | 0
1
AntwortFrage
Unrecognized function or variable
clear all clc range = 1; t = -range:0.01:range; w = 1; P = unit(t+w/2)-unit(t-w/2); plot(t,P,'Linewidith',5) grid ...
fast 4 Jahre vor | 3 Antworten | 1
3
AntwortenFrage
How do I get the phasor to rotate clock-wise direction?
f = input(' frequency in Hz >> ') A = input(' amplitude (>0) >> ') theta = input(' phase in degrees >> ') omega = 2*pi*f; % f...
fast 4 Jahre vor | 0 Antworten | 2
0
AntwortenFrage
Error using reshape Number of elements must not change. Use [] as one of the size inputs to automatically calculate the appropriate size for that dimension.
% dening data points, vectors x and y x_value = [0 0.5 1 1.5 2 2.5 3 3.5 4 4.5 5]; y_value = [0 0.2474665 0.8813736 1.550158 2...
etwa 4 Jahre vor | 1 Antwort | 0
1
AntwortFrage
Error: Matrix dimensions must agree.
% dening data points, vectors X and Y X_VALUES=[0 0.5 1 1.5 2 2.5 3 3.5 4 4.5 5]; Y_VALUES=[0 0.247466462 0.881373587 1.550157...
etwa 4 Jahre vor | 1 Antwort | 0
1
AntwortFrage
Use Lagrange interpolating polynomial method and cubic spline interpolation to evaluate the function f(x) at 100 equally spaced points in the interval [0,5].
X1 = [0 0.5 1 1.5 2 2.5 3 3.5 4 4.5 5]; Y1 = [0 0.247466462 0.881373587 1.550157957 2.094712547 2.532068064 2.893443986 3.20033...
etwa 4 Jahre vor | 0 Antworten | 0