Nivedita
MathWorks
Followers: 0 Following: 0
Python, C++, C, MATLAB, HTML, CSS
Spoken Languages:
English, Hindi, Bengali
Estadística
0 Preguntas
16 Respuestas
0 Problemas
100 Soluciones
CLASIFICACIÓN
191.438
of 301.985
REPUTACIÓN
0
CONTRIBUCIONES
0 Preguntas
16 Respuestas
ACEPTACIÓN DE RESPUESTAS
0.00%
VOTOS RECIBIDOS
0
CLASIFICACIÓN
of 21.479
REPUTACIÓN
N/A
EVALUACIÓN MEDIA
0.00
CONTRIBUCIONES
0 Archivos
DESCARGAS
0
ALL TIME DESCARGAS
0
CLASIFICACIÓN
2.356
of 177.893
CONTRIBUCIONES
0 Problemas
100 Soluciones
PUNTUACIÓN
1.359
NÚMERO DE INSIGNIAS
9
CONTRIBUCIONES
0 Publicaciones
CONTRIBUCIONES
0 Público Canales
EVALUACIÓN MEDIA
CONTRIBUCIONES
0 Temas destacados
MEDIA DE ME GUSTA
Feeds
C2000 - Issue Running Monitor and Tune in Simulink Model
Hello, TMDSCNCD28379D is a controlCARD. The onboard XDS100v2 USB connection exposes multiple logical interfaces in Windows. In ...
3 días hace | 0
Eror Timeout problem with F28335 board, XCP internal error, timeout expired
Hello, This error usually means that the model was built and programmed, but Simulink could not establish the Monitor & Tune / ...
4 días hace | 0
Error: Could not connect to target application: XCP internal error: timeout expired, in response to XCP CONNECT command
Hello, This error usually means that the model was built and programmed, but Simulink could not establish the Monitor & Tune / ...
4 días hace | 0
Hardware tools and blocks
Hello Salah, The GPIO block only writes a digital value from software at the model sample time. That can work for slow/manual p...
4 días hace | 0
use of Base rate trigger
Hello Mohammad Tauquir Iqbal, The Base rate trigger selects the interrupt source that runs the model's base-rate scheduler on t...
4 días hace | 0
A FRDM-K64F board cannot be detected
Hello nicai, The code generation step completed successfully. The failure occurs during deployment, when MATLAB tries to detect...
4 días hace | 0
S-Function builder
Hi Gaston, The errors that you are observing are probably because target-specific C2000 code is being compiled during the simul...
4 días hace | 0
XCP internal error: timeout expired' error during 'Monitor and Tune' for STM32F767ZI
You can refer to the following link for external mode debugging steps: https://www.mathworks.com/matlabcentral/answers/2048172-w...
4 días hace | 0
The data for selected hardware TMS320F28379D is invalid
Hello Kshitija Nand Kumar, The issue that you are facing might be due to a corrupted config set. Please try to check if you are...
5 días hace | 0
Embedded Coder Support Package for Texas Instruments C2000 Processors
Hi, You can use the C2000 Microcontroller Blockset which is available from R2023a. It supports Linux environment from R2023a. ...
alrededor de 1 mes hace | 0
Data gaps and aliasing in Simulink External Mode with TI LaunchPad at 100µs sample rates
Hi Sanjit, The Monitor and Tune feature operates in the background and inherently requires a finite amount of time to process a...
alrededor de 1 mes hace | 0
C2000 CAN Video example calls out eCAN, but blockset shows CAN and we have an RX Issue
Hi Ali, You can refer to these following examples for your usecase: Communication using CAN blocks: https://www.mathworks.com/...
alrededor de 2 meses hace | 0
how to use FPUfastRTS library on Ti F28377S
Hello Valeriy, On devices supporting both TMU and FPU, select Enable TMU for more optimized floating-point math routines. This ...
2 meses hace | 0
FIL Error: "Did not receive version information" with connection that works in Vivado
Hello, You can follow the troubleshooting steps mentioned in the official documentation to resolve the issue: https://www.math...
alrededor de 1 año hace | 0
Cannot open .mlapp file in app designer
Hello Daniel! I understand that whenever you are trying to open the attached app, you are getting the dialog box with “Error lo...
casi 3 años hace | 0
May I know why 'value must be a double scalar' come out in app designer?
Hello Aqilah! I understand that you are receiving the error “ 'Value' must be a double scalar” in app designer. I am assuming ...
casi 3 años hace | 0
Resuelto
Make roundn function
Make roundn function using round. x=0.55555 y=function(x,1) y=1 y=function(x,2) y=0.6 y=function(x,3) ...
alrededor de 4 años hace
Resuelto
Matlab Basics - Rounding III
Write a script to round a large number to the nearest 10,000 e.g. x = 12,358,466,243 --> y = 12,358,470,000
alrededor de 4 años hace
Resuelto
Matlab Basics - Rounding II
Write a script to round a variable x to 3 decimal places: e.g. x = 2.3456 --> y = 2.346
alrededor de 4 años hace
Resuelto
Check that number is whole number
Check that number is whole number Say x=15, then answer is 1. x=15.2 , then answer is 0. http://en.wikipedia.org/wiki/Whole_numb...
alrededor de 4 años hace
Resuelto
MATLAB Basic: rounding IV
Do rounding towards plus infinity. Example: -8.8, answer -8 +8.1 answer 9 +8.50 answer 9
alrededor de 4 años hace
Resuelto
MATLAB Basic: rounding III
Do rounding towards minus infinity. Example: -8.8, answer -9 +8.1 answer 8 +8.50 answer 8
alrededor de 4 años hace
Resuelto
MATLAB Basic: rounding II
Do rounding nearest integer. Example: -8.8, answer -9 +8.1 answer 8 +8.50 answer 9
alrededor de 4 años hace
Resuelto
MATLAB Basic: rounding
Do rounding near to zero Example: -8.8, answer -8 +8.1 answer 8
alrededor de 4 años hace
Resuelto
Fibonacci sequence
Calculate the nth Fibonacci number. Given n, return f where f = fib(n) and f(1) = 1, f(2) = 1, f(3) = 2, ... Examples: Inpu...
alrededor de 4 años hace
Resuelto
Roll the Dice!
*Description* Return two random integers between 1 and 6, inclusive, to simulate rolling 2 dice. *Example* [x1,x2] =...
alrededor de 4 años hace
Resuelto
Magic is simple (for beginners)
Determine for a magic square of order n, the magic sum m. For example m=15 for a magic square of order 3.
alrededor de 4 años hace
Resuelto
Reverse the vector
Reverse the vector elements. Example: Input x = [1,2,3,4,5,6,7,8,9] Output y = [9,8,7,6,5,4,3,2,1]
alrededor de 4 años hace
Resuelto
Sum all integers from 1 to 2^n
Given the number x, y must be the summation of all integers from 1 to 2^x. For instance if x=2 then y must be 1+2+3+4=10.
alrededor de 4 años hace


