photo

Sufiyan

MathWorks

Aktiv seit 2023

Followers: 0   Following: 0

Nachricht

Statistik

All
MATLAB Answers

0 Fragen
30 Antworten

Cody

0 Probleme
16 Lösungen

RANG
2.268
of 302.147

REPUTATION
28

BEITRÄGE
0 Fragen
30 Antworten

ANTWORTZUSTIMMUNG
0.00%

ERHALTENE STIMMEN
0

RANG
 of 21.574

REPUTATION
N/A

DURCHSCHNITTLICHE BEWERTUNG
0.00

BEITRÄGE
0 Dateien

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANG
24.537
of 179.426

BEITRÄGE
0 Probleme
16 Lösungen

PUNKTESTAND
229

ANZAHL DER ABZEICHEN
2

BEITRÄGE
0 Beiträge

BEITRÄGE
0 Öffentlich Kanäle

DURCHSCHNITTLICHE BEWERTUNG

BEITRÄGE
0 Discussions

DURCHSCHNITTLICHE ANZAHL DER LIKES

  • Community Group Solver
  • 3 Month Streak
  • Knowledgeable Level 2
  • First Answer
  • Solver

Abzeichen anzeigen

Feeds

Anzeigen nach

Beantwortet
Faster indexing from Matfiles with similar names
Hi Chun, You can follow the procedure shown in the below code to call the variable a on each iteration. % m1.mat to m5.mat fo...

etwa 3 Jahre vor | 0

Beantwortet
How to display 1 decimal numbers in uitable?
Hi Alessandro, You can follow the procedure shown in the below code to generate a table in the figure. % sample data data = [...

etwa 3 Jahre vor | 0

Beantwortet
split label matrix into cells according to their lables including boundary
You can follow the procedure shown in the below code to split the area in to individual matrix. % sample label matrix label_ma...

mehr als 3 Jahre vor | 0

Beantwortet
How to obtain Shannon's entropy in specific wavelet packet tree node?
As you have obtained the best tree using the “besttree()”, the tree obtained will have some non-zero coefficients, which repres...

mehr als 3 Jahre vor | 0

| akzeptiert

Beantwortet
Command Window loses focus if opening history
I understand you are experiencing an issue with the terminal window configuration. To fix this issue, you can try the following:...

mehr als 3 Jahre vor | 0

Beantwortet
Fill an empty table with input from different variables
You can use the “repmat” as shown in the code below. % Define the variables n = 'value of n'; m = 'value of m'; % Replace ...

mehr als 3 Jahre vor | 0

| akzeptiert

Beantwortet
how can I connect multiple lines into a line in a graph?
You can use "plot" directly instead of "fplot" as shown in the code below. % Define the functions and their domains syms s ...

mehr als 3 Jahre vor | 0

| akzeptiert

Beantwortet
Table function with cells
Hi, You can refer to the below code. %sample data data_table = cell(3,1); data_table{1} = {'A', '[1 25]', 'double', ""}; da...

mehr als 3 Jahre vor | 0

| akzeptiert

Beantwortet
How to plot convolution between signal and Hilbert tranform operator
Hi, You can refer to the code below. t = 0:0.01:1; f = 2; omega = 2*pi*f; y = cos(omega*t); h = [Inf, 1./(pi*t(2:end))];...

mehr als 3 Jahre vor | 0

| akzeptiert

Beantwortet
Not the correct color on volshow
Hi, You can refer to the below code. V_test=zeros(30,30,30); % first cube V_test(10:20,10:20,10:20)=1; % second cube V...

mehr als 3 Jahre vor | 0

| akzeptiert

Beantwortet
How to make two signals of same dimensions?
Hi, Here is an example to read the two audio signals and to subtract both. % read in the two audio signals [x1, fs1] = audio...

mehr als 3 Jahre vor | 0

Beantwortet
Finding linear combination between 3 vectors
Hi, You can refer to the below code to find linear combination between three vectors. a=[1 1 1]'; b=[1 2 3]'; c=[2 -1 1]'; ...

mehr als 3 Jahre vor | 0

Beantwortet
How to apply walsh hadamard transform?
Hi, You can refer to the code below to apply Hadamard transform on the image. % Load the PNG image img = imread('img.jpg'); ...

mehr als 3 Jahre vor | 0

Beantwortet
real-time FFT in simulink
Hi, Here are the steps to create the model. Open a new Simulink model. From the Simulink Library Browser, open the "DSP Syst...

mehr als 3 Jahre vor | 0

| akzeptiert

Beantwortet
How to change the position of the subtext?
Hi, You can try separating the subtext into a second ‘text’ object. You can adjust the x and y coordinates of second text objec...

mehr als 3 Jahre vor | 0

Beantwortet
calculating hamming distance and total hamming distance
Hi, You can refer to the code below to calculate hamming distance and total hamming distance for binary matrices. % input matr...

mehr als 3 Jahre vor | 0

Beantwortet
I am having problem in FFT function
Hi, You can refer to the below code to find DFT of x= [1 1 6 1 6 0 2 6] %input sequence x x = [1 1 6 1 6 0 2 6]; % Calcula...

mehr als 3 Jahre vor | 0

Beantwortet
reversing the hamming window
Hi, To reverse the effect of the Hamming window on your signal, you need to divide your windowed signal by the Hamming window. ...

mehr als 3 Jahre vor | 0

Beantwortet
How to determine the sigma value for 2D gaussian filter
Hi, Determine the FWHM (full width at half-maximum) of the desired smoothing effect. This will depend on the scale of features ...

mehr als 3 Jahre vor | 0

Beantwortet
convert this in matlab please
Hi, You can refer to the code below. function [Q] = gaussQuad2(f, xs, ys, n) % Gauss quadrature for double integral over a re...

mehr als 3 Jahre vor | 0

Beantwortet
Chebyshev Differentiation Matrix without using function 'cheb'
Hi, You can refer to the code below. % Set up the domain N = 10; % Number of points in the domain x = cos(pi*(0:N-1)/(N-1))'...

mehr als 3 Jahre vor | 0

Beantwortet
can any one tell me how to make every 1 subcarrier take 2 user ?
Hi, You can refer to the code below N=128; % number of subcarriers K=4; % number of users SINR = 20; % SINR in dB (aver...

mehr als 3 Jahre vor | 0

Beantwortet
base station cell sectorization
Hi, Yes, you should specify the BS antenna panel orientation to define a sector while configuring the physical layer. In a hexa...

mehr als 3 Jahre vor | 0

Beantwortet
how to find angle between two signals
Hello, you can refer to the below code to find the angle between two signals using correlation. % Define two signals t = 0:0....

mehr als 3 Jahre vor | 0

Beantwortet
Discrete Fourier Transform using MATLAB?
Hello, You can refer to the below code. % Define the input sequence x[n] x = [1 2 3 4]; % Compute the DFT coefficients X[k] ...

mehr als 3 Jahre vor | 0

Beantwortet
How to create sinusoidal signal of different frequencies for different time
Hello, You can refer to the below code to create a sinusoidal signal of different frequencies for different time interval. % D...

mehr als 3 Jahre vor | 0

Beantwortet
quantize ROI of an image in 3 spaces [0,10),(10,36],(36,255]
Hello, You can use imquantize function, where you must specify the levels as [10,36] so that it quantizes in to three levels (...

mehr als 3 Jahre vor | 0

Beantwortet
How do I plot a filtered wav file?
Hello, You can refer to the code below to get an output plot. In the code shown below, coefficients of output y are a=1(y[n]) a...

mehr als 3 Jahre vor | 0

Beantwortet
Compute average FFT power for images (to reflect average visual saliency?)
Hello, You can refer to the below code to perform FFT on series of images and to compute an average FFT per image. % Read in ...

mehr als 3 Jahre vor | 0

Beantwortet
dividing image into unequal quadrants and indicating position as an index of those.
Hello, You can refer to the code below for dividing the image into unequal quadrants, To get the position and the belonging seg...

mehr als 3 Jahre vor | 0