Réponse apportée
How to interact with a video live
Hi, The video file if read through MATLAB will be a figure only. You can track the real time location by setting up the timer ...

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
How to build Time delay Neural network using deep learning layers?
Hi Abdelwahab, You can find lstmLayer useful for implementing above but need to figure out the proper formulation of problem s...

plus de 5 ans il y a | 0

Réponse apportée
Grab tempretures higher than 299
Hi, For going values greater than 299K you can change the text according to the range in regexp. For example if you want to co...

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
Rotate a vector so that it coincides with a line or a axis, and find the angle required.
Hi Tingwei, I assume the vector you want to rotate has two set of coordinates i.e. start point and end point taken as (x1,y1) ...

plus de 5 ans il y a | 0

Réponse apportée
How to display previous or next frame in a video file in App Designer GUI?
Hi Zachary, While looking into the R2020a documentation of read I don’t see anywhere it is mentioned that this function will b...

plus de 5 ans il y a | 0

Réponse apportée
Generating Frequency domain with FFT function of accelerometer data
Hi, In the line freX_1 = freX_2(1:N/2+1); freX_2 is built to have 200 elements but when you are calculating freX_1, the in...

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
How to implement H infinity controller in simulink domain?
Hi, You can implement the H-infinity controller using hinfsyn. For more information you may also refer to the documentation of...

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
Have equation, need to loop through all data and variables.
Hi, As John mentioned in the comments you can use element wise multiplication for above equation format. The data structure in...

plus de 5 ans il y a | 0

Réponse apportée
How to integrate a surf plot
Hi, From the question I think this example clearly explain the steps of doing surface integral. You need to define the ranges ...

plus de 5 ans il y a | 0

Réponse apportée
Load timeseries from Python into Simulink
Hi, The timeseries by default, will create the time indexes in order of 1 seconds. You can mention the time values in a vector...

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
Code not running and showing busy
Hi Rajdeep, From the code I see you are using first for loop inside the main for loop for updating the value of E. And the whi...

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
Decision tree/regression tree, how does the algorithm chose a value for the root node?
Hi, In the documentation of fitctree (which is essentially a decision tree), the Node Splitting Rules are mentioned which clea...

plus de 5 ans il y a | 0

Réponse apportée
Can anyone change this script without using CV toolbox?
Hi, Instead of using insertShape you can show the current image on a figure using imshow and then can use plot to draw the lin...

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
How do I determine the output size of a fullyConnectedLayer?
Hi, You can use analyzeNetwork for inspecting what is the input and output size from each layer. This can help you determine v...

plus de 5 ans il y a | 1

Réponse apportée
Each time getting different prediction results using trainNetwork.
Hi, I assume by getting different prediction you mean the same input is giving different output when training the network seve...

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
Is there a 'Pixel classification layer' equivalent for 1 dimensional vector 'Deep Network Designer'?
Hi, There is 1-D convolutional layer which you can build using the methods described here and here. This way a encoder and dec...

plus de 5 ans il y a | 0

Réponse apportée
How can I segment and extract CSF in matlab without a structural mri?
Hi, For segmentation and CSF(Cerebrospinal fluid) extraction you can follow similar answer mentioned below, these are based on...

plus de 5 ans il y a | 0

Réponse apportée
How are NaN Values handled by Matlab Decision Tree / Ensemble Learner
Hi, I assume you are using fitctree for working on Decision Trees. From here you may see that whenever a NaN value is encounte...

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
Simulink onramp failed to launch
Hi, You can try opening MATLAB as an administrator to resolve this issue. As you are using a Prerelease version and if the ...

plus de 5 ans il y a | 0

Réponse apportée
mvksdensity- how to choose bandwidth and bandwidth comprises of how many points?
Hi, From the documentation of mvksdensity, the Bandwidth parameter can be selected using the Silverman’s rule of thumb mention...

plus de 5 ans il y a | 1

Réponse apportée
Processing and Saving multiple images to the same file
Hi Elliza, From the code I see that you have used the for loop to traverse through the images. Since the first for loop is for...

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
How to correct the distorted images after getting information from camera calibrated images?
Hi Muhammad, The Single Camera Calibrator App documentation tell in detail about the step involved in calibrating an image. Yo...

plus de 5 ans il y a | 0

| A accepté

Réponse apportée
fit data to distribution issue
Hi, From the code and data provided on question and comment, I see that the output you are plotting is not in sorted order. So...

plus de 5 ans il y a | 0

Réponse apportée
polynomial order of training equation of Artificial neural network
Hi, Since it is neural network the system of equation will turn out to be linear only (if there is no nonlinearity like tanh o...

plus de 5 ans il y a | 0

A résolu


There are 10 types of people in the world
Those who know binary, and those who don't. The number 2015 is a palindrome in binary (11111011111 to be exact) Given a year...

plus de 5 ans il y a

A résolu


Converting binary to decimals
Convert binary to decimals. Example: 010111 = 23. 110000 = 48.

plus de 5 ans il y a

A résolu


Binary code (array)
Write a function which calculates the binary code of a number 'n' and gives the result as an array(vector). Example: Inpu...

plus de 5 ans il y a

A résolu


Relative ratio of "1" in binary number
Input(n) is positive integer number Output(r) is (number of "1" in binary input) / (number of bits). Example: * n=0; r=...

plus de 5 ans il y a

A résolu


Bit Reversal
Given an unsigned integer _x_, convert it to binary with _n_ bits, reverse the order of the bits, and convert it back to an inte...

plus de 5 ans il y a

A résolu


Given an unsigned integer x, find the largest y by rearranging the bits in x
Given an unsigned integer x, find the largest y by rearranging the bits in x. Example: Input x = 10 Output y is 12 ...

plus de 5 ans il y a

Charger plus