photo

Jaynik


Last seen: 16 dagar ago Active since 2023

Followers: 1   Following: 0

Statistics

All
  • 12 Month Streak
  • Solver
  • Knowledgeable Level 3
  • First Answer

View badges

Feeds

View by

Answered
Creation of edge set for a specific perfect matching number
Hi Anthony, To select and remove the largest value from the V array in the for loop, you can do the following: [maxValue, maxI...

19 dagar ago | 0

Answered
Generating random planar graphs where nodes have fixed coordinates
Hi Hari, There is no direct function to generate random planar graphs with fixed nodes and changing edge connections. This task...

19 dagar ago | 0

Answered
Walks and eccentricity, graph theory
Hi, To calculate the number of walks of exactly k steps, you just need to multiply the Adj matrix k times. Once you have the e...

19 dagar ago | 0

Answered
how to find all aliques of a node from an adjacency matrix?
Hi @rumin diao, A clique is a collection of vertices in an undirected graph G such that every two different vertices in the cli...

20 dagar ago | 0

Answered
How can we construct and visualize hypergraph?
Hi @s malik, As per my knowledge, currently there is no direct way to create hypergraphs in MATLAB. However, you can represent ...

ungefär en månad ago | 0

Answered
I have drawn some graphs within the notbook mupad and have found their chromatic numbers. Is it possible to then find their total chromatic numbers?
Hi Olivia, You can use a simple greedy algorithm to find the color of each vertex in MATLAB. Following is a sample code for the...

ungefär en månad ago | 0

Answered
finding the shortest cycle in a graph
Hi @R yan, You can use the allcycles function on a graph object to find all the cycles in a graph. Once you obtain all the cycl...

ungefär en månad ago | 0

Answered
How to build a N-regular graph
Hi @Anelmad Anasli, A N-regular graph is a graph where each node has 'N' neighbors. Following is a MATLAB function that takes N...

ungefär en månad ago | 0

Answered
mencari nilai minimum dari algoritma graph
Hi @Fawwaz, Based on the given function, to find the minimum value in a graph coloring algorithm where the minimum value is gre...

ungefär en månad ago | 0

Answered
Build and visualize a circulant graph
Hi @mazari ahmed, There is no direct function to plot "circulant" graphs in MATLAB. Though you can create a plot from using oth...

ungefär 2 månader ago | 0

Answered
How to Simulate Nonlinear Model Discrete Time?
Hi, The ode45 function is used for solving ordinary differential equations (ODEs) and it is typically used for continuous-time ...

3 månader ago | 0

Answered
What's the difference between a random walk, AR(1) or a white noise process?
Hi, A random walk is a time series model where each current term is the sum of the previous term and a random error. An AR(1) p...

3 månader ago | 0

Answered
find the variance of autocorrelation function
Hi Chithralekha, The two pieces of code are not equivalent, and that is why they are producing different results. In first piec...

3 månader ago | 0

Answered
How do I get a 0 value time series data, given the range of another variable
Hi, The error message indicates that the number of dates must match the number of rows of observations when creating a new time...

3 månader ago | 0

Answered
Estimate an AR(1) model with intercept for time series yt using the LS method
Hi, We can use the ar function in the "System Identification Toolbox", for estimating autoregressive models directly. Following...

3 månader ago | 0

Answered
fitglm for multi-dimensional/time series data
Hi Niko, The fitglm function in MATLAB is designed to work with univariate response variables. For multivariate response variab...

3 månader ago | 0

Answered
How to forecast a multi step ahead time series?
Hi Atreyee, The predict function from the "System Identificatoin Toolbox" can be used to perform multi-step ahead forecasting. ...

3 månader ago | 0

Answered
Simple Binary Series prediction
Hi, One method for simple binary series is using Autoregressive Integrated Moving Average (ARIMA) models, which are often used ...

3 månader ago | 0

Answered
Spectral Analysis with fft
Hi Frank, The code seems correct as you have correctly implemented the theoretical autocovariance function of an AR(1) process ...

3 månader ago | 0

Answered
I would like to extract a representative pattern from a univariate time series data set
Hi Deepak, A Hidden Markov Model (HMM) is a model in which you observe a sequence of emissions, but do not know the sequence of...

3 månader ago | 0

Answered
Time series - How to use a loop
Hi, You can do the following to automate a for loop instead of writing manual code for each year: a=1; b=1; sigma_white_nois...

3 månader ago | 0

Answered
How to find the RMSE.. !
Hi Sophia, The Root Mean Square Error (RMSE) is a measure of how well your model's predictions match the actual data. It is cal...

3 månader ago | 0

Answered
How to get chaos features from a set of signals to build a ML classifier based on it?
Hi Mahmoud, The hht function can be used in MATLAB to obtain the Hilbert-Huang Transform. You will need to give the intrinsic m...

3 månader ago | 0

Answered
Averaging time series for a season
Hi, You can follow a similar approach to the one you used for the annual mean. Instead of averaging over all 12 months, you wil...

3 månader ago | 0

Answered
Calculate Inflation rate (yearly, quarterly)
Hi Gustav, The approach to calculate the inflation rate based on the Consumer Price Index is correct. The inflation rate is typ...

3 månader ago | 0

Answered
how to generate error terms for idploy or ARMAX models
Hi Kushan, In the context of an ARMAX model, the terms in the equation are the residuals of the model, that is, the differences...

3 månader ago | 0

Answered
Create a time series collection from two timeseries with different TimeInfo Vector
Hi, The error message suggests that the time vectors of the two timeseries objects are not identical. In MATLAB, the time vecto...

3 månader ago | 0

Answered
How to change plotting options in deep learning networks?
Hi, There is no direct way to remove the smoothed training accuracy curve from the graph. If possible, you can upgrade MATLAB a...

4 månader ago | 0

Answered
How to design your own input signal characteristics in Simulink?
Hi Savi, In Simulink, you can design a source noise signal using the Noise block. This block allows you to model noise as an id...

4 månader ago | 0

Answered
Using fitcdiscr without feature normality
Hi João, You can still use fitcdiscr even if your features do not follow a Gaussian distribution. It is assumed that the data f...

4 månader ago | 0

Load more