Gelöst


The Answer to Life, the Universe, and Everything
A variation of a previous Hitchhiker's Guide to the Galaxy problem. *Inputs:* Life, the Universe, and Everything *Output:*...

etwa 13 Jahre vor

Gelöst


Replace multiples of 5 with NaN
It is required to replace all values in a vector that are multiples of 5 with NaN. Example: input: x = [1 2 5 12 10 7] ...

etwa 13 Jahre vor

Gelöst


Periodic Table 101.
Given the atomic number (z), answer the symbol for that particular element of the <http://en.wikipedia.org/wiki/Periodic_table/ ...

etwa 13 Jahre vor

Gelöst


Special Relativity 101.
Special relativity states that the mass of an object varies as a function of its velocity. If *c* is the speed of light (c appro...

etwa 13 Jahre vor

Gelöst


CONVERT TAN TO SIN
In a right angle triangle ABC given the tan(A) then find sin(A) For example tan(A)=3/4 then sin(A)=3/5

etwa 13 Jahre vor

Gelöst


Celcius to Kelvin
Convert Celsius degrees to Kelvin temperature.

etwa 13 Jahre vor

Gelöst


kmph to mps
convert kilometer per hour to meter per second

etwa 13 Jahre vor

Gelöst


Celsius to Fahrenheit converter
Convert Celsius to Fahrenheit degrees.

etwa 13 Jahre vor

Beantwortet
how do Create a message signal m(t) = cos(2πfmt), fm = 5 KHz. and Plot the signal both in time domain and the magnitude of its spectrum in frequency domain?
The sampling rate that you are using is 100 samples per second, whereas the carrier frequency of the message signal is 5,000 her...

etwa 13 Jahre vor | 2

Beantwortet
Fourier Series Coefficients Ck
Here is a start: N = 10; L = 5; n = 0:N-1 x = ... C = ... figure; stem(n,x); figure;...

etwa 13 Jahre vor | 0

| akzeptiert

Beantwortet
Calculating Fourier Series Coefficients
>> doc fft >> doc real >> doc imag <http://en.wikipedia.org/wiki/Fourier_series>

etwa 13 Jahre vor | 4

Beantwortet
For loop help, initilizing seed value
r = 3; N = 250; initValues = linspace(0.1,0.9,100); M = length(initValues); finalValues = zeros(M,1)...

etwa 13 Jahre vor | 0

Beantwortet
is this matlab code of 8psk ??
No. As far as I can tell, this code is BPSK, not 8PSK. Also, there are several mistakes in the code.

etwa 13 Jahre vor | 0

| akzeptiert

Beantwortet
How to plot the difference between two graphs..
figure; subplot(3,1,1); plot(t,x); subplot(3,1,2); plot(t,y); subplot(3,1,3); plot(t,x-y);

etwa 13 Jahre vor | 0

Beantwortet
How to plot BER graph without using bertool?
>> doc sim

etwa 13 Jahre vor | 0

| akzeptiert

Beantwortet
obtain simulink signal width
Simulink > Signal Attributes > Width <http://www.mathworks.com/help/simulink/slref/width.html>

mehr als 13 Jahre vor | 0

| akzeptiert

Beantwortet
Short question: Functions with multiple outputs
No difference, but first approach is preferred.

mehr als 13 Jahre vor | 1

Beantwortet
generate random numbers in engineering notation with precision
<http://www.mathworks.com/matlabcentral/fileexchange/39658>

mehr als 13 Jahre vor | 0

Beantwortet
Inputting a matrix to a function
>> doc varargin >> doc varargout

mehr als 13 Jahre vor | 0

| akzeptiert

Beantwortet
How to convert audio, video & image in binary outputs and vice versa (Series of 1's & 0's)?
Please try: >> docsearch('binary') MATLAB: >> doc dec2bin >> doc bin2dec Data Acquisition Toolbox: ...

mehr als 13 Jahre vor | 0

Beantwortet
what are the hamming, fft, ifft functions?
>> doc filter >> doc fdatool >> doc fir1

mehr als 13 Jahre vor | 0

Beantwortet
How to do the following with Matrix in MatLab
Here is a start: A = zeros(3,3); B = zeros(3,3); B(2,1) = 2; B(1,2) = 1; [M,N] = size(B); Q = 4...

mehr als 13 Jahre vor | 1

Beantwortet
Where can I find the files for the webinar "Medical Imaging Workflows with MATLAB"?
Here it is: <http://www.mathworks.com/wbnr60402> HTH.

mehr als 13 Jahre vor | 0

Beantwortet
How can I force Simulink to use a set of data (time depended) as input?
Use the |xlsread| function to read the data into the MATLAB Workspace, then use the |From Workspace| block to bring the data int...

mehr als 13 Jahre vor | 1

Beantwortet
Phase angle between fundamental and harmonics
Use the |fft| function to transform the signal to the frequency domain, then compare the phase angle of each overtone to the fun...

mehr als 13 Jahre vor | 0

Beantwortet
how to create a table in matlab to list my results in without the need to run the program each time to get the results and plot
Please take a look at this self-paced tutorial: <http://www.mathworks.com/academia/student_center/tutorials/register.html MAT...

mehr als 13 Jahre vor | 0

Beantwortet
how to create a table in matlab to list my results in without the need to run the program each time to get the results and plot
Maybe you can create an M x N matrix to store the result of M values of SNR for each of N experiments. So, for example, you cou...

mehr als 13 Jahre vor | 0

| akzeptiert

Beantwortet
AM modulation and demodulation
<http://www.mathworks.com/academia/student_center/tutorials/register.html MATLAB Tutorial>

mehr als 13 Jahre vor | 0

| akzeptiert

Beantwortet
FFT code in Fortran
Please try the following: Fs = 48000; dt = 1/Fs; t = (0:dt:0.25-dt)'; N = size(t,1); dF = Fs/N; f ...

mehr als 13 Jahre vor | 1

Beantwortet
Embedded Matlab function in Simulink with num2str function
eml.extrinsic('num2str');

mehr als 13 Jahre vor | 1

Mehr laden