Patel Mounika
Followers: 0 Following: 0
Statistik
RANG
1.067
of 294.533
REPUTATION
66
BEITRÄGE
0 Fragen
28 Antworten
ANTWORTZUSTIMMUNG
0.00%
ERHALTENE STIMMEN
13
RANG
of 20.121
REPUTATION
N/A
DURCHSCHNITTLICHE BEWERTUNG
0.00
BEITRÄGE
0 Dateien
DOWNLOADS
0
ALL TIME DOWNLOADS
0
BEITRÄGE
0 Beiträge
BEITRÄGE
2 Öffentlich Kanäle
DURCHSCHNITTLICHE BEWERTUNG
40
BEITRÄGE
0 Highlights
DURCHSCHNITTLICHE ANZAHL DER LIKES
Feeds
Code composer version for matlab 2019
Hi Andre, You can install CCS v6 or later versions to work on Texas Instruments C2000 F2807x, Texas Instruments C2000 F2837xD, ...
etwa 5 Jahre vor | 0
How launch simulink from powershell/command prompt without running matlab first?
According to my understanding, I don't think so this is possible.Look into below thread.https://in.mathworks.com/help/simulink/u...
mehr als 5 Jahre vor | 0
FM/CW noise RADAR
In Frequency modulation, both message and carrier signals are analog in nature (fmmod). In Frequency shift keying modulation, t...
mehr als 5 Jahre vor | 0
Where is getDevice?
GetDevices function is available in MATLAB R2019a which displays all available data acquisition devices. Syntax: daq.getDevice...
mehr als 5 Jahre vor | 0
How can I handle more than one input/output in an exported function as a Java library?
You can execute MATLAB functions from Java using the MATLABEngine feval and fevalAsync methods. To call a MATLAB function: Pas...
mehr als 5 Jahre vor | 0
| akzeptiert
Problem with battery+winding circuit in simscape
You forgot connecting a reference point to voltage sensor. I am attaching the modified model.
mehr als 5 Jahre vor | 0
How to use parfor?
To solve the variable classification issues, make sure that your variables are uniquely classified and meet the respective categ...
mehr als 5 Jahre vor | 0
| akzeptiert
Simulink Question: Trouble Debugging
The second error has occurred because in the Direct Lookup Table n-D (Dialog-parameters) you have specified Number of table dime...
mehr als 5 Jahre vor | 0
Stateflow storage class - how to make it globalexternal storage class instead of auto?
Simulink implements global variables either as Data Store Memory blocks or Simulink.signal objects. Verify that your models do ...
mehr als 5 Jahre vor | 0
Can anyone tell me how can I fix Demux problem in Simulink?
The error has occurred because the muxed input signal contains more than or less than 3 signals and you are attempting to pull o...
mehr als 5 Jahre vor | 0
Simulink for students from California State university in Sacramento.
You can access the simulink onramp course using the below link. https://www.mathworks.com/matlabcentral/fileexchange/69056-simu...
mehr als 5 Jahre vor | 0
RTL-SDR Receiver Gains
The gain 50 dB is Receiver gain and 100MHz is the center frequency. The center frequency of a channel is measure of center frequ...
mehr als 5 Jahre vor | 0
| akzeptiert
Pass Cell array to matlab function via Bash script
Try using curly braces {}, instead of smooth parentheses () to create the Subject cell array. Subjects={'S01','S02'}; You can ...
mehr als 5 Jahre vor | 0
Difference between methods of copying a simulink parameter
Yes, there is a difference between the two methods. In the first method you are creating a reference to the same object but in t...
mehr als 5 Jahre vor | 0
Deep learning for motor control
Yes, you can design Dc motor control using Neural Networks, I have shared a related paper. https://www.ijert.org/research/dc-mo...
mehr als 5 Jahre vor | 1
Store and pass on variables
System Objects are designed specifically for implementing and simulating dynamic systems with inputs that change over time and S...
mehr als 5 Jahre vor | 0
How to create a fitnet neural network with multiple hidden layers?
You can add more hidden layers as shown below: trainFcn = 'trainlm'; % Levenberg-Marquardt backpropagation. % Create a Fittin...
mehr als 5 Jahre vor | 9
| akzeptiert
Polynomial Voltage Controlled Voltage Source (PVCVS) in Simscape to MUX in Simulink Connection
The Simscape block has two kinds of ports; physical conserving ports and physical signal ports. The physical conserving ports ca...
mehr als 5 Jahre vor | 0
How to deploy trained Faster RCNN object detector in Simulink
There is no direct way to use Faster RCNN object detector in Simulink but instead you can use coder.extrinsic to wrap the call t...
mehr als 5 Jahre vor | 0
Question on Simulink Stand Alone executable with grt target file
You can give the input arguments next to the executable (D:\Bibin\Testing>Test_Sum your input arguments) and the corresponding o...
mehr als 5 Jahre vor | 0
| akzeptiert
Unable to perform assignment because the size of the left side is 1-by-1 and the size of the right side is 1-by-401. Error in fminsearch (line 200) fv(:,1) = funfcn(x,varargin{:});
The objective function (first input argument of "fminsearch") should return a scalar value to be minimized. However, the functio...
mehr als 5 Jahre vor | 1
| akzeptiert
Dear sir i am not able to use my matlab institute accound. Please help
The following answer might help resolve the issue.Thank you. https://www.mathworks.com/matlabcent...
mehr als 5 Jahre vor | 0
How to use Parallel Coordinates Plot for Predictor selection?
Let’s look at the parallel coordinate plot shown in the figure you sent: https://www.mathworks.com/help/...
mehr als 5 Jahre vor | 0
| akzeptiert
Laplace inversion for fractional-order transfer functions
The ilaplace function of the symbolic engine currently does not implement an explicit expression for ilaplace(1/(5 + (3*(s^a ...
mehr als 5 Jahre vor | 1
| akzeptiert
Matlab not download completly
Antivirus, firewall, or security software may have disrupted the download, so try disabling these and it might resolve the issue...
mehr als 5 Jahre vor | 0
How to properly run simple Simulink circuit?
Maximum expected supply-side current (Block parameter of DC-DC converter) is set to 1.5mA, but the circuit is drawing more curre...
mehr als 5 Jahre vor | 1
| akzeptiert
3D plot for pricing options over increasing time and asset price
You can use array indexing to store the values of C in each iteration. i=1; for x2=0:N for x1=0:N d1=(log(x2/X)+(r+0.5*sig...
mehr als 5 Jahre vor | 0
How do I set the "userdata" parameter in a shallow neural network object?
One possible solution is to create a struct object which contains details of the meta-data of the network and then assign it to ...
mehr als 5 Jahre vor | 0