photo

Nirmal Gunaseelan

Last seen: 6 mois il y a Actif depuis 2011

Followers: 0   Following: 0

Message

Statistiques

All
MATLAB Answers

0 Questions
55 Réponses

Cody

0 Problèmes
17 Solutions

RANG
786
of 300 744

RÉPUTATION
100

CONTRIBUTIONS
0 Questions
55 Réponses

ACCEPTATION DE VOS RÉPONSES
0.00%

VOTES REÇUS
17

RANG
 of 21 054

RÉPUTATION
N/A

CLASSEMENT MOYEN
0.00

CONTRIBUTIONS
0 Fichier

TÉLÉCHARGEMENTS
0

ALL TIME TÉLÉCHARGEMENTS
0

RANG
29 294
of 170 597

CONTRIBUTIONS
0 Problèmes
17 Solutions

SCORE
170

NOMBRE DE BADGES
1

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
0 Point fort

NOMBRE MOYEN DE LIKES

  • Knowledgeable Level 3
  • 6 Month Streak
  • Knowledgeable Level 2
  • First Answer
  • Solver

Afficher les badges

Feeds

Afficher par

Réponse apportée
Why "Model arguments can not be used in non-tunable expressions"? in Referenced Simulink Models?
Model arguments in a referenced model are specifically designed to allow instances of referenced model to be tuned. It appears t...

presque 11 ans il y a | 0

Réponse apportée
how to copy matlab figure into ms word?
Take a look at the vast number of options at Exporting graphs page and choose the one that suits your need. The simplest approac...

presque 11 ans il y a | 0

| A accepté

Réponse apportée
Code Generation GRT: Make DSM non-volatile
I'm guessing you have already looked at <http://www.mathworks.com/help/rtw/ug/data-stores.html#f1103588 storage class of the DSM...

plus de 11 ans il y a | 0

Réponse apportée
Function-call initiator output in C-mex file for S Function
This <http://www.mathworks.com/help/simulink/sfg/function-call-subsystems.html documentation page> shows an example of how to ge...

plus de 12 ans il y a | 0

| A accepté

Réponse apportée
Model reference function-call output invalid connection
Could you also paste the exact message? I guess you have already checked the box "Accept Function call" in the Outport block. ...

plus de 12 ans il y a | 0

Réponse apportée
get all subblock names from a given system
<http://www.mathworks.com/help/simulink/slref/find_system.html find_system> does traverse through the entire model. Search Depth...

plus de 12 ans il y a | 1

Réponse apportée
SIMULINK BUG, or Am I missing something in DATA STORE MEMORY block?
Looks to me like an access issue. How about you make B as a global data store? This is just to make sure that your conditionally...

plus de 12 ans il y a | 0

Réponse apportée
How can I break down my Simulink model into smaller parts and allow multiple cores to process the model?
You could try modeling for concurrent execution as described in this <http://www.mathworks.com/help/simulink/examples/modeling-c...

presque 13 ans il y a | 1

Réponse apportée
How do I write to a data store block in a referenced model?
The page on <http://www.mathworks.com/help/simulink/examples/using-data-stores-across-multiple-models.html Using Data Stores Acr...

environ 13 ans il y a | 0

Réponse apportée
ADC Sampling with Embedded Coder -- TI C2000 F28035
It appears that the function-call subsystem is defined to be periodic. You could change that to 'triggered' instead of 'periodic...

plus de 13 ans il y a | 0

Réponse apportée
Where to find Concurrent Execution Window: Main Pane?
The concurrent execution pane is for assisting in modeling distributed systems in Simulink. I do not think that this is what you...

plus de 13 ans il y a | 0

| A accepté

Réponse apportée
Simulink: referenced blocks, library or subsystems?
All three are componentization tools that suit specific needs. <http://www.mathworks.com/help/toolbox/simulink/ug/bs8xh1u-1.html...

plus de 13 ans il y a | 1

| A accepté

Réponse apportée
Hybrid times, subsystems and model referencing
The model reference instances have to be compatible with the solver type specified in the top model. Take a look at these <http:...

plus de 13 ans il y a | 1

| A accepté

Réponse apportée
Data store memory(DSM)
Hi James, Looking through all the warnings, it appears from the diagnostics that the MATLAB Fcn block is running at minor tim...

presque 14 ans il y a | 0

| A accepté

Réponse apportée
Data store memory(DSM)
Hi James, Could you give more details on what blocks are being used with the DSM block? Are you using a Data Store Write bloc...

presque 14 ans il y a | 0

A résolu


Are you in or are you out?
Given vertices specified by the vectors xv and yv, and a single point specified by the numbers X and Y, return "true" if the poi...

presque 14 ans il y a

A résolu


Pizza!
Given a circular pizza with radius _z_ and thickness _a_, return the pizza's volume. [ _z_ is first input argument.] Non-scor...

presque 14 ans il y a

A résolu


Cell joiner
You are given a cell array of strings and a string delimiter. You need to produce one string which is composed of each string fr...

presque 14 ans il y a

A résolu


Determine whether a vector is monotonically increasing
Return true if the elements of the input vector increase monotonically (i.e. each element is larger than the previous). Return f...

presque 14 ans il y a

A résolu


Is my wife right?
Regardless of input, output the string 'yes'.

presque 14 ans il y a

A résolu


Weighted average
Given two lists of numbers, determine the weighted average. Example [1 2 3] and [10 15 20] should result in 33.333...

presque 14 ans il y a

A résolu


Find all elements less than 0 or greater than 10 and replace them with NaN
Given an input vector x, find all elements of x less than 0 or greater than 10 and replace them with NaN. Example: Input ...

presque 14 ans il y a

A résolu


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

presque 14 ans il y a

A résolu


Triangle Numbers
Triangle numbers are the sums of successive integers. So 6 is a triangle number because 6 = 1 + 2 + 3 which can be displa...

presque 14 ans il y a

A résolu


Column Removal
Remove the nth column from input matrix A and return the resulting matrix in output B. So if A = [1 2 3; 4 5 6]; and ...

presque 14 ans il y a

A résolu


Determine if input is odd
Given the input n, return true if n is odd or false if n is even.

presque 14 ans il y a

A résolu


Find the sum of all the numbers of the input vector
Find the sum of all the numbers of the input vector x. Examples: Input x = [1 2 3 5] Output y is 11 Input x ...

presque 14 ans il y a

A résolu


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

presque 14 ans il y a

A résolu


Swap the first and last columns
Flip the outermost columns of matrix A, so that the first column becomes the last and the last column becomes the first. All oth...

presque 14 ans il y a

A résolu


Add two numbers
Given a and b, return the sum a+b in c.

presque 14 ans il y a

Charger plus