photo

Udit06


Last seen: 5 Tage vor Aktiv seit 2023

Followers: 0   Following: 0

Statistik

  • 6 Month Streak
  • Knowledgeable Level 2
  • First Answer

Abzeichen anzeigen

Feeds

Anzeigen nach

Beantwortet
'if' instead of a 'switch' when auto code generation
Hi @예진 박, You can refer to the "ConvertIfToSwitch" configuration parameter of "coder.EmbeddedCodeConfig" object to control the ...

18 Tage vor | 1

Beantwortet
Extract features from training images (Matlab - Computer Vision)
You can use the MATLAB functions "detectSIFTFeatures" and "extractHOGFeatures" to extract the SIFT and histogram of gradient fea...

18 Tage vor | 0

Beantwortet
We are trying to develop an AI model that detects 7 types of abnormal driver behavior
Hi @현준, I would recommend using video data to capture temporal dynamics and context which are necessary for accurate behaviour ...

19 Tage vor | 0

Beantwortet
Modeling and solving a pde
Hi NS, It would be helpful if you can attach the figure mentioned in the query. Please refer to the following post which mentio...

20 Tage vor | 0

Beantwortet
how to use printf inside a CUDA kernel?
Hi Daniel, One more suggestion that I found in the following discussion is to use "cudaDeviceSynchronize" to ensure that the ke...

22 Tage vor | 0

Beantwortet
Calculation Value at Risk in Matlab
Hi Preeti, In addition to Umar's response, you can also refer to the following MathWorks documentation that explains how Value-...

22 Tage vor | 0

Beantwortet
Can i do a Time Sensitive Netowrk formulation in MATLAB?
Hi Zhao, You can refer to the following resources that involves Time Sensitive Network formulation using MATLAB and Simulink. ...

4 Monate vor | 0

Beantwortet
Component under test in test harness
Hi Daniel, You can follow the following steps to programmatically retrieve the Component under Test. 1) Use sltest.harness.fi...

4 Monate vor | 0

Beantwortet
Trying to do Image segmentation by neural networks, but mini-batch accuracy and mini-batch loss are fluctuating
Hi Peter, In order to prevent the fluctuation in the results, you can try updating the learning rate adaptively while training ...

4 Monate vor | 0

Beantwortet
dTdt=−k(T−Ta) k=0.4,Ta=25∘, initial condition T(0)=T0=75∘C .how to solve using ode45 and report the temperature obtained at times t=1,2,3 and 4 . report T(1.0)
Hi Ramesh, You can follow the following steps to solve a differential equation using "ode45" function 1) Define the ODE functi...

4 Monate vor | 0

Beantwortet
detectSIFTFeatures only working for uint8
Hi Michael, If you want to use an image of double data type as input, you should first scale it down to the range [0, 1]. Doing...

4 Monate vor | 0

| akzeptiert

Beantwortet
using two 73728 x 3 matrix with RGB and Contour to draw a heatmap
Hi Jinyang, In my understanding you want to create a color label similar to as shown in the top portion of the left image. You...

4 Monate vor | 0

Beantwortet
Question about python API and computer vision module
Hi Hugo, The reason that you are seeing the output as "<matlab.object object at 0x7f73e51eb050>" is not due to lack of converg...

4 Monate vor | 0

Beantwortet
How to crop an ultrasonography to remove annotations and the black portions?
Hi Ostache, You can use edge detection or thresholding to identify the content boundaries and then crop accordingly. This metho...

4 Monate vor | 0

Beantwortet
Mean Composite of netcdf images
Hi Arnab, Based on the code you have provided above, you've successfully looped through your .nc files, read the relevant data ...

4 Monate vor | 0

Beantwortet
How to train LSTM net on very large dataset.
Hi Davey, If you don't want create multiple smaller files, you can create a MATLAB's custom datastore that reads the data direc...

5 Monate vor | 0

Beantwortet
Convert a sound to a mathematical formula
Hi Hadasa, You can refer to the following MATLAB answers which involves a similar problem statement of getting a mathematical...

5 Monate vor | 0

Beantwortet
Signal processing toolbox license error when accessing MATLAB from Python.
Hi Upendra, You can refer to the following MATLAB answer which handles a similar issue that you are facing. https://www.mathwo...

5 Monate vor | 0

Beantwortet
MatlabExecutionError when using Python API and calling user script
Hi Marc, Since your simple_script.m contains only an assignment statement, it is not returning anything to the python. In my op...

5 Monate vor | 0

Beantwortet
User-defined matlab function does not return the right result when run from Python
Hi, Here is the python code to call the P_sinr function written in MATLAB. % NOTE: This is a python code, hence putting the ...

5 Monate vor | 0

Beantwortet
How do I run a Bluetooth command using OpenGoProMatlab?
Hi Christine, If you want to connect your GoPro with MATLAB, you can use the ipcam object. You can refer to the following MATLA...

5 Monate vor | 0

Beantwortet
Research direction questions based on time series data
Hi @형현 As per the definition of Sharpe Ratio definition given on the following Investopedia resource, https://www.investopedi...

5 Monate vor | 0

Beantwortet
What does "idle" mean in the TIMEOUT feature definition?
Hi Mohamad, As per the following MathWorks documentation, MathWorks uses a network license manager program from Flexera Softwar...

5 Monate vor | 0

| akzeptiert

Beantwortet
If A= [1001] and B=[0101], what will be the value of the multiplication of A and B in MATLAB? I am new here. So, having trouble understanding
Hi Hasin, The multiplication of two binary numbers A = and B = follows the shift and add method, similar to long multiplicatio...

5 Monate vor | 0

Beantwortet
Video Processing of Sperm Tails
Hi Ahmed, To record the frequency and amplitude of sperm tail movement stored in the video, you can do the following: 1) Detec...

6 Monate vor | 0

Beantwortet
Pedestrian Detection using Lidar Data Which is labelled using Lidar Labeller App in Matlab
Hi Gaurav, You can use the "complex-yolov4-pandaset" pretrained model which is trained on car, truck and pedestrian. The Comple...

6 Monate vor | 0

Beantwortet
I would like to do a prediction for rainfall data
Hi @Riyadh, Your tasks seems like a univariate timeseries forecasting. You can use ARIMA model or LSTM network to achieve your ...

6 Monate vor | 0

Beantwortet
problem with image registration using BRISK
Hi Asmaa, You can try to reduce the MetricThreshold parameter of the detectSURFFeatures function. Reducing the value of MetricT...

6 Monate vor | 0

Beantwortet
using image command for data with three columns
Hi Sishu, If you want a scatter plot, you can loop through each index and use the scatter function to plot all the points belon...

6 Monate vor | 1

Beantwortet
Filling Strip Line Gaps in Landsat 7 image
Hi @Duaa Abu Sadaa, I understand that you want to fill the gaps in the Landsat 7 image. If you can represent the gaps in the im...

7 Monate vor | 0

Mehr laden