Answered
Connect Silicon Software microEnable IV AD4-CL Frame grabber with Image Acquisition toolbox
Hi Daniel, Please refer to the MATLAB Documentation to check the manufacturers supported for the Camera Link Frame Grabber by t...

2 years ago | 0

Answered
Addition of additional CNN and Dense lyers in the existing YOLOv4 model layers for subclass level detection
Hi NARENDRA, As per my understanding, adding additional CNN layers directly to the YOLO model can disrupt the anchor box mechan...

2 years ago | 0

Answered
YOLO v3 - Error message while setup of training
Hi Osman, As per my understanding of the question, "dlfeval" is used as a handler for the modelGradients function which takes t...

2 years ago | 0

Answered
Compile and loadlibrary() issues.
Hi Xymbu, As per my understanding of the question, the above command is being used to compile a MATLAB function file(InputTest....

2 years ago | 0

Answered
S-function crashes when accessing external dll compiled with /CLR
Hi Pavel, As per my understanding of the question the code provided is an example of a C++/CLI DLL that wraps around a .NET ass...

2 years ago | 0

Answered
How do i change resolution of images within the stack to make image foveated based on Euclidean distance from pixels within the image
Hi SANJIT SINGH, To change the resolution of images within a stack based on the Euclidean distance from the pixels, following s...

2 years ago | 0

Answered
Reading a Complex banded geotiff
Hi Randall Bonnell, As per my the understanding of the question there are two problems in the question, the first is the error ...

2 years ago | 0

| accepted

Answered
Why does matlab rename my simulink logsout file?
Hi Szabo, As per my understanding of the question, the batchsim performs a different naming convention because it distributes t...

2 years ago | 0

Answered
tform without checkerboard calibration
Hi Gizem Karslioglu, To create a transformation matrix for lidar projection without using checkerboard planes, please refer to ...

2 years ago | 0

Answered
How to automatically separate fibers from nuclei in a histological image ?
Hi Francois, As per my understanding of the question, to isolate the fibres from the histological images considering a neural ...

2 years ago | 0

Answered
C++ (DLL) interface: How to return variable size c-array
Hi Steven Brossi, As per my understanding of the question, to handle the variable length C-array you may use the following sugg...

2 years ago | 0

Answered
Lidar calibration with fixed intrinsic parameters
Hi Seungryul Lee, Please follow the steps provided below to apply these parameters for Lidar-Camera Calibration: Load the Ca...

2 years ago | 0

Answered
clibgen.generateLibraryDefinition error: the global scope has no "quick_exit" on Mac M2
Hi Darral Freund, As per my understanding of the error message mentioned above: using ::at_quick_exit _LIBCPP_USING_IF_EXISTS...

2 years ago | 0

| accepted

Answered
Does matlab intend to drop support for calling java altogether? I don't need tech support, but is it safe to assume the ability to call java will be around in the future?
Hi @Roger, The MATLAB R2023a version supports Java 11. Please refer to the release notes of the R2023a version provided below, ...

2 years ago | 0

Answered
How do I average a matrix in steps but they are not all in equal steps
Hi @NCA As per my understanding of the question, when the data cleaning is being done and followed by this we want to do data l...

2 years ago | 0

| accepted

Answered
Measurement Covariance Matrix must be non-empty
Hi @Suraj Parasuram, As mentioned in the above problem I understand that the R matrix is not empty while running the EKF Bloc...

2 years ago | 0

| accepted

Answered
Set to one particular voxels of 3D volumes
Hi @Demy, As per my understanding, based on the given code the voxels are classified into two groups, the one with the given se...

2 years ago | 0

Answered
Fusing camera to lidar not working correctly outside lidarCameraCalibrator-App
Hi @Finn Strzelczyk, As per my understanding the problem shows incorrect results due to the following reasons: 1) As the ...

2 years ago | 0

Answered
Update indices in Simulink
Dear @Fabrizio Leoni, As per my understanding of the question, the problem contains a Force Array and the initial temperature i...

2 years ago | 0

Answered
Calculate Average or Mean of a matrix
Hi, Minhaz Parveez As per my understandig you want to calculate the mean of each coloumn of the matrix. By default MATLAB fuct...

3 years ago | 1

Answered
MATLAB App with P-Code?
Hi John R. As per my understanding you are p-coding all the files to run the app. There might be a possibility that the Main fi...

3 years ago | 0

Answered
calculate SNR in matlab
Hi Puspa Rilanda, As per my understanding you want to calculate the SNR using the encrypted and the decrypted voice signal. You...

3 years ago | 0

Answered
How to calculate GPA in row Matrix and using For loop?
Hi Vishal Mahendran As per my understanding you want to calculate the Grade Point Average of a row matrix using for loop. Assum...

3 years ago | 0

Answered
Loop and input question
As per my uderstanding you want to create a loop which asks for an input from the user and returns the sum of odd numbers betwee...

3 years ago | 0

Answered
How do i create a loop for this expression?
Hi Burners, As per my understanding you want to use for loop for 5 iterations and display the result of the expression. You ca...

3 years ago | 0

Answered
sum all columns in a matrix
Hi Ariela Glikman As per my understanding you want to get the sum of the matrix coloumn wise so you can use the MATLAB sum func...

3 years ago | 0

Answered
while loop to sum elements
Hi leon leon As per my understanding you want to find the sum of elements of the vector until the sum gets gretaer than 14 and ...

3 years ago | 0

Answered
How can I use modified bessels function of second order for the following equation??
Hi Sandhya Pai, As per my understanding you want to write the zeroth and the first order modified bessels function of second ki...

3 years ago | 0

Answered
Can l run matlab on Google cloud?
Hi Paul Mudondo, If you want to migrate the processes of MATLAB onto Google cloud, and want to check the license requirements f...

3 years ago | 0

Solved


Finding Perfect Squares
Given a vector of numbers, return true if one of the numbers is a square of one of the numbers. Otherwise return false. Example...

3 years ago