Answered
Trouble Plotting an eye diagram of an analog signal.
Symbol Rate: You need to know the symbol rate of the digital signal that your analog signal represents. The symbol rate will t...

2 years ago | 0

Answered
.out binary file unable to flash
The text in your image indicates that you're attempting to flash a binary file to an ARM Cortex R4 target, but the process is fa...

2 years ago | 0

Answered
how to overlay these two data sets in one image with two different colorbars?
clc; clear all; close all; load('lol10.mat'); load('lol9.mat'); load('xAx.mat'); load('zAx.mat'); load('AR.mat'); figoff...

2 years ago | 0

Answered
Numerically Solving Complex Equation
Define the Equations Symbolically:Use symbolic math to define your equations. Since you have complex numbers, make sure to use s...

2 years ago | 0

Answered
Custom Table-Based Battery Cell Model for SimScape Battery Builder
Here are some steps and considerations that might help you troubleshoot and achieve the desired outcome: Confirm Compatibility:...

2 years ago | 0

Answered
Error with matlabbatch.spm after changing the file paths / spm_jobman>fill_run_job
File Paths: The error often occurs when the specified file paths in FilePath01 and FilePath02 are incorrect, not accessible, or ...

2 years ago | 0

Answered
Warning: In rtwmakecfg.m, "bdroot" are excluded from packaging for the MATLAB Runtime environment
Warning 1: Use of bdroot in rtwmakecfg.m The first warning is about the use of the bdroot function in the rtwmakecfg.m file, wh...

2 years ago | 0

Answered
What is the validity period of the individual student license?
You're right to be confused! Understanding the validity of a MathWorks individual student license can be a bit convoluted. Her...

2 years ago | 10

| accepted

Answered
what is the ilaplace function algorithm?
Lookup Tables: Many inverse Laplace transforms can be computed using predefined tables of Laplace transform pairs. If the symbol...

2 years ago | 0

Answered
How to plot objective function with optimal solution
lb = [lower_bound_x1, lower_bound_x2]; % Replace with your actual lower bounds % Define the range for x1 and x2. Adjust the r...

2 years ago | 0

Answered
How to get the stored integer representation of a single-precision floating point in simulink (HDL Coder)?
Data Type Conversion: Use a Data Type Conversion block to convert the single type to a fixdt(1,32,0) data type. This conversion ...

2 years ago | 0

Answered
How can I automatically translate the graphs I obtained through the Regression Learner app into Matlab code automatically??
1. Use the Generated Function After training your model in the Regression Learner app, click on "Generate Function" to create a...

2 years ago | 0

| accepted

Answered
MATLAB not responding when using NCORR
Here's how you can troubleshoot and potentially resolve the issue: 1. Check RAM Usage Monitor RAM: While running NCORR, monito...

2 years ago | 0

Answered
Can System Composer or other MathWorks tools be used to create Product Line Models (some call them Feature Models)?
Creating a product line model, particularly for systems that will eventually involve embedded code generation, is a multifaceted...

2 years ago | 0

Answered
Advice for creating log files and printing debug messages with simulink compiler
Breaking down the issues and potential solutions: 1. Debugging and Logging Messages in Compiled Executable When your Simulink ...

2 years ago | 2

| accepted

Answered
Error using function: Too many input arguments.
@Kawsar Neural networks in MATLAB require that the input data is formatted correctly, often as a column vector with a number of...

2 years ago | 0

| accepted

Answered
C code generation: memory allocation for reference model in multi-instance mode
In Simulink and especially with Embedded Coder for generating C code, handling large models with multiple referenced models can ...

2 years ago | 1

Answered
Referenced model contains an algebraic loop. Referenced models do not support algebraic loops
Here's what you can do to troubleshoot and potentially resolve the issue: Introduce Delays: Check if you can introduce a delay ...

2 years ago | 0

Answered
How can I read in 100 image files from my folder titled "Images"?
Approach 1: Use dir or fullfile combined with dir to create a list of all the files in the directory. Loop through each file, ...

2 years ago | 2

| accepted

Answered
"Unable to open host-based c-api library" - when trying to simulate with Simulink-WebApp
Here's what you can do to troubleshoot and potentially resolve the issue: Check Compatibility: Ensure that the app is compatibl...

2 years ago | 0

Answered
Functions of APP cannot jump in APP Designer of Matlab R2023b
Here are a few potential reasons why it's not working: The function is not in the MATLAB path: If MATLAB can't find the functio...

2 years ago | 0

Answered
Is there any reference to use CWT layer for audio dataset
To adapt the code for your audio dataset with a CWT layer as the first layer, you can follow these general steps: Data Preparat...

2 years ago | 0

| accepted

Answered
How can I set the solver to 'discrete', programmatically?
To set the solver type for a specific block to "Fixed-step," you are on the right track with the following code: myModel = 'mod...

2 years ago | 2

| accepted

Answered
Error using function: Too many input arguments.
function outputPower = predictPVOutput(inputData) load('net'); % Load your neural network model outputPower = net(inp...

2 years ago | 0

Answered
Why Matlab do not import full python library?
Some steps and considerations to help troubleshoot and potentially resolve the issue: Check Python Path in MATLAB: Make sure MA...

2 years ago | 0

Answered
Hope to have an equivalent shortcut key similar to Ctrl+D in VSCode
MATLAB's built-in editor might not have a direct equivalent to Visual Studio Code's Ctrl+D shortcut for "Add Selection To Next F...

2 years ago | 0

| accepted

Answered
Do I have to correct correlation values for two series originating from overlapped analysis?
Here's a conceptual approach to adjust the degrees of freedom in MATLAB: % Assuming x and y are your time series data with over...

2 years ago | 0

| accepted

Answered
I am not getting the laplace inverse of the function [c1 * exp(x1 * x) + c2 * exp(x2 * x) + c3 * exp(x3 * x) + c4 * exp(x4 * x) - B]
% Define symbolic variables syms c1 c2 c3 c4 x1 x2 x3 x4 B s % Define the function in the Laplace domain F(s) = c1/(s - x1)...

2 years ago | 0

Answered
GA Optimization Problem using a permutation restraint
you want to ensure that: Three positions in the train set are fixed for the locomotives (positions 1, 15, and 29). Each combin...

2 years ago | 1

| accepted

Answered
Flash .out file to Target
To flash a program to a Texas Instruments (TI) microcontroller board, it's common to use a .bin file. However, if you have a .ou...

2 years ago | 0

Load more