Answered
how to find the data rates in a generated frequency
Calculating data rates in an OFDM (Orthogonal Frequency Division Multiplexing) system involves considering several parameters su...

2 years ago | 5

| accepted

Answered
Return the value of a selected tree node
It sounds like you're trying to work with a tree structure in a UI, where the tree has a parent node ("PrechargesNode") and seve...

2 years ago | 6

Answered
make smaller global variables in code generation
If you're dealing with limited memory resources in embedded systems and the total size of global variables is a concern during c...

2 years ago | 6

Answered
Neural Network statistics?
Yes, you can save the gradient and performance values for each epoch during the training process in MATLAB using a custom script...

2 years ago | 6

| accepted

Answered
Roadrunner:When import xml file ,get error.
In RoadRunner, importing an XML file requires the file to follow the OpenDRIVE format. OpenDRIVE is a standardized XML-based for...

2 years ago | 8

Answered
Undefined function 'extractLBP' for input arguments of type 'uint8'.
The error you are encountering (Undefined function 'extractLBP' for input arguments of type 'uint8'.) indicates that the extract...

2 years ago | 9

| accepted

Answered
Modify Matrix / multidimensional array with Colon in Colon
You are correct that using the colon operator directly to perform the multidimensional assignment is a bit tricky in MATLAB. The...

2 years ago | 8

| accepted

Answered
Sampling rate issue while working on ADRV9361-Z7035 using Software/Hardware co-design workflow
It sounds like you have designed a multi-rate system in MATLAB/Simulink using the Hardware/Software co-design approach for the A...

2 years ago | 8

Answered
MATLAB designed app not working after exporting it to system
When you encounter issues with your MATLAB App after exporting and running it on a different system, there are several potential...

2 years ago | 8

Answered
What are anonymous functions in MATLAB, and how can they be used to simplify code? Provide an example where an anonymous function is used effectively.
Anonymous functions, also known as function handles, are nameless functions that can be defined using the @(arguments) expressio...

2 years ago | 10

| accepted

Answered
How can I do centralized tracking with multi sensors?
Centralized tracking with multiple sensors involves fusing the measurements from different sensors into a common state represent...

2 years ago | 9

Answered
How can I efficiently vectorize a for-loop in MATLAB? Provide an example where vectorization significantly improves performance compared to a traditional loop.
Example to calculate the cumulative sum of an array using a for-loop and its vectorized version: % Sample array arr = ...

2 years ago | 9

| accepted

Answered
any specified format to represent the EV load in distribution system at any bus number
% EV charging stations considering vechles are charging mode p(bus no.)=p(bus no.)+(power rating/(1000*MVAb))*abs(V(bus ...

3 years ago | 10

| accepted

Answered
can any one share the format of data which represents the generator cost curve data of IEEE 30 bus system
%Pgmin Pgmax a b c 0.50 2.00 37.5 200 0 0.20 ...

3 years ago | 11

| accepted

Answered
Is Phased Locked Loop block can use in phase transformation
PLL is used before phase conversion. here I'm attaching my work grid connected micro grid system.

3 years ago | 10

| accepted

Answered
is there any particular calculation size for shunt capacitor in radial distribution system.
In general way verious indexs like FVSI, VSI, FSI are used to observe the stability of the distribution system but for sizing an...

3 years ago | 11

| accepted

Answered
can any one share the economic load dispatch generator data for IEEE 30 bus system
%Xmin Xmax a b c 0.50 2.00 37.5 200 0 0.20 0.80 175.0 ...

3 years ago | 13

| accepted

Answered
Is there any need to scale the upper and lower bounds of the parameters in PSO algorithm
no need to scale the parameters.

3 years ago | 13

| accepted

Answered
code format for location of STATCOM in IEEE 30 bus test system
may try the following one function statdata = statdata30() % |Bus | Vsp | theta |Qsmx | Qsmn | statdata = [ 26...

3 years ago | 13

| accepted

Answered
Is there any similar element in FACTS controller as capacitor for power loss minimization in distribution system
In general Thyristor Controlled Series Capacitor (TCSC) can works more similar to capacitor but the thyristor switching helps to...

3 years ago | 14

| accepted

Answered
pso code for optimal location of statcom in 30 bus test system
function statdata = statdata30() % |Bus | Vsp | theta |Qsmx | Qsmn | statdata = [ 26 1 0 0.5 -0.5; ...

3 years ago | 16

Answered
Any upside limitation to consider DG penetration's in distribution system
In general 50% compensation is considered as upside limitation in the DG pentration. Even if we offer high pentration level the ...

3 years ago | 27

| accepted

Answered
How to generate voltage sag in a transmission system?
In MATLAB simulink, use the switch block to connect the large amount of loads based on the step function you can introduce volta...

3 years ago | 26

Answered
In distribution system, is D-STATCOM minimizes the power losses similar to capacitor placement?
Yes D-STATCOM is placed like a capacitor to minimize the power. In programming also D-STATCOM replaced the capacitor because bot...

3 years ago | 25

| accepted

Answered
How to invert .p file to .m file
not possible. only .m files to .p files possible. mainly .p files helps to protect the important files

3 years ago | 29