photo

Jaynik


Last seen: Today 自 2023 起处于活动状态

Followers: 1   Following: 0

统计学

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

查看徽章

Feeds

排序方式:

已回答
how can i store input characters from user and every time when get new input compare it with already stored values if present already then give error message?
Hi Samia, You can follow two approaches here but the overall steps remain the same. We can initialize an empty data structure t...

14 days 前 | 0

已回答
How to fill in initialized zero array with data?
Hi Gary, You can use the size function to get the number of lines in the current file after reading using dlmread. Using the nu...

14 days 前 | 0

已回答
How to create database to store extracted values?
Hi Elias, Following is a sample function that you can use for creating a '.mat' file of features. You will need to change it ba...

14 days 前 | 0

已回答
Array concatenation based on condition.
Hi, Based on my understanding of the given conditions, I think you are on the right track to generate the output. The logic nee...

15 days 前 | 0

已回答
How to put variables into an array based on their values?
Hi Dacoda, The strategy suggested by you should work. You can create a cell array of kids and numeric array for values that rep...

15 days 前 | 0

已回答
Changing values in an array with unknown dimension
Hi Jesper, You can use the ind2sub function to convert a linear index that is a single number representing the position in a fl...

15 days 前 | 0

已回答
Plot two vectors or arrays sing simulink and XY graph
Hi @HayderMU, Upon searching the documentation, I was able to find this for MATLAB R2019b release: https://www.mathworks.com/he...

16 days 前 | 0

已回答
Implementing the (polynomial) "kernel trick" in matlab
Hi Ashwin, You are on the right path to implement the polynomial kernel trick. Here is a sample code that can be further enhanc...

16 days 前 | 0

已回答
Working with arrays in simulink
Hi Subashini, To build a model that reads input from array elements one by one, following steps can be followed: Use a Constan...

16 days 前 | 0

已回答
Vector/matrix sum of forces for mass-spring systems
Hi Martijn, To optimize the computation of forces on nodes in the given mass-spring system, the explicit loop over each node ca...

16 days 前 | 0

已回答
Fastest and Most Memory Efficient Way to Generate Structure from Matrix of Data
Hi @deathtime, The current approach involves iterating through loops to match and fill the data, which can be optimized using M...

18 days 前 | 0

已回答
How to resolve linear equation Ax=b using Gaussian Elimination
Hi @Toan, Following is a rough algorithm that can be followed to implement the function removeColRow that removes linear column...

18 days 前 | 0

已回答
Why am I not able to find a solution using the bisection search i have implemented ?
Hi @Kavya, The issue you are encountering with the bisection search implementation might be due to a few potential problems. T...

18 days 前 | 0

已回答
Topological sort
Hi @Anon, As mentioned in the wikipedia page for topological sort, the Kahn's algorithm can be used to find the topological sor...

18 days 前 | 0

已回答
DFS algorithm recursion and function stack
Hi @Nolaan Nolaan, The issue encountered is likely due to the marque and stop variables. In MATLAB, variables are passed by val...

18 days 前 | 0

已回答
Maximum matching in a bipartite graph
Hi @faeze, The Hopcroft-Karp algorithm can be used for finding maximum matching in a bipartite graph. This algorithm takes the ...

23 days 前 | 0

已回答
how to connect edges to nodes in a image using minimum spanning tree approach
Hi Raghu, MATLAB's built-in functions can be used to compute and plot the MST based on the coordinates of the centers of mass a...

23 days 前 | 0

已回答
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...

2 months 前 | 0

已回答
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...

2 months 前 | 0

已回答
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...

2 months 前 | 0

已回答
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...

2 months 前 | 0

已回答
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 ...

3 months 前 | 0

已回答
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...

3 months 前 | 0

已回答
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...

3 months 前 | 0

已回答
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...

3 months 前 | 0

已回答
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...

3 months 前 | 0

已回答
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...

3 months 前 | 0

已回答
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 ...

4 months 前 | 0

已回答
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...

4 months 前 | 0

已回答
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...

4 months 前 | 0

加载更多