photo

The Matlab Spot


Actif depuis 2013

Followers: 0   Following: 0

Message

Statistiques

All
MATLAB Answers

0 Questions
32 Réponses

File Exchange

2 Fichiers

Cody

0 Problèmes
5 Solutions

RANG
1 443
of 300 799

RÉPUTATION
50

CONTRIBUTIONS
0 Questions
32 Réponses

ACCEPTATION DE VOS RÉPONSES
0.00%

VOTES REÇUS
7

RANG
2 602 of 21 092

RÉPUTATION
660

CLASSEMENT MOYEN
4.60

CONTRIBUTIONS
2 Fichiers

TÉLÉCHARGEMENTS
9

ALL TIME TÉLÉCHARGEMENTS
6119

RANG
57 925
of 171 134

CONTRIBUTIONS
0 Problèmes
5 Solutions

SCORE
60

NOMBRE DE BADGES
1

CONTRIBUTIONS
0 Publications

CONTRIBUTIONS
0 Public Chaîne

CLASSEMENT MOYEN

CONTRIBUTIONS
0 Point fort

NOMBRE MOYEN DE LIKES

  • 5-Star Galaxy Level 4
  • Personal Best Downloads Level 2
  • First Review
  • First Submission
  • Knowledgeable Level 2
  • First Answer
  • Solver

Afficher les badges

Feeds

Afficher par

Réponse apportée
How can I move the starting plot point in figure?
Check varying XData & YData for the Image object that you have created. It is about changing the X & Y Offsets Refer <http://...

plus de 11 ans il y a | 0

| A accepté

A soumis


Simulink : Multiport Terminator
Simulink implementation for a much needed Multiport terminator block

plus de 11 ans il y a | 3 téléchargements |

0.0 / 5
Thumbnail

Réponse apportée
How to use loop in Simulink model
Refer <http://www.mathworks.in/help/simulink/slref/foriterator.html this link>

presque 12 ans il y a | 0

Réponse apportée
How to find degree of polynomial in Matlab?
See if <http://www.mathworks.in/help/matlab/ref/polyval.html polyval> helps

environ 12 ans il y a | 0

A soumis


Simulink : Timer - Counter
Simulink Implementation for a simple up timer/counter

environ 12 ans il y a | 6 téléchargements |

4.6 / 5
Thumbnail

Réponse apportée
running c program in matlab
I dont know about using unix commands, But Can you check out if you can use <http://www.mathworks.in/help/matlab/using-c-shared-...

environ 12 ans il y a | 0

Réponse apportée
How to construct an anonymous function from the result of the fit command?
Refer <http://www.mathworks.in/help/matlab/matlab_prog/anonymous-functions.html Anonymous Functions> for further details

environ 12 ans il y a | 0

Réponse apportée
running c program in matlab
I dont know if you have referred <http://www.mathworks.in/help/simulink/s-function-basics.html s-functions>

environ 12 ans il y a | 0

Réponse apportée
Plotting the data continuously coming from serial port
Take reference from <http://www.mathworks.in/matlabcentral/fileexchange/24294-simulink-signal-viewing-using-event-listeners-and-...

environ 12 ans il y a | 0

Réponse apportée
How can i define variables in embedded matlab function
Refer this <http://www.mathworks.in/help/simulink/slref/matlabfunction.html Matlab Function Block> for details of the implementa...

environ 12 ans il y a | 0

Réponse apportée
How to get Data type of stateflow input through script?
To get the data type of the input of the stateflow at compile time (for data set as inherit from Simulink) 1. Compile the mod...

environ 12 ans il y a | 0

Réponse apportée
How to get Data type of stateflow input through script?
To get the data type defined in the Model Explorer: tmp_SfPath = gcb; get_param(tmp_SfPath,'Object') tmp_SFObj = get_...

environ 12 ans il y a | 2

| A accepté

A résolu


Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...

environ 12 ans il y a

Réponse apportée
Finding a character in a string?
using start anchor with regexp will ensure that you '#' as the first character of you input string. hashtag=lower(input('Wh...

environ 12 ans il y a | 0

| A accepté

Réponse apportée
copy-on-write, performance, and code readability
Check this out <http://www.matlabtips.com/how-to-point-at-in-matlab/ Using Pointers in MATLAB>

environ 12 ans il y a | 0

Réponse apportée
A number base converter
check this out ... <www.mathworks.in/help/matlab/ref/dec2hex.html>

environ 12 ans il y a | 0

Réponse apportée
Running an m-file from C#
If you need that matlab should not be called for using the function ... <http://www.codeproject.com/Articles/5026/MATLAB-MEX-...

environ 12 ans il y a | 0

Réponse apportée
Running an m-file from C#
Check this out... <http://www.mathworks.com/matlabcentral/fileexchange/12987-integrating-matlab-with-c Integrating-matlab-with-...

environ 12 ans il y a | 0

A résolu


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

environ 12 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 ...

environ 12 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...

environ 12 ans il y a

A résolu


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

environ 12 ans il y a

Réponse apportée
how can results of two separate m files be plotted in same figure window
The following example functions plot in the current figure window with lines held on to the same axes. - function test1 call...

environ 12 ans il y a | 0

| A accepté

Réponse apportée
Change a read-only file to writable
Search for function fileattrib in the matlab documentation

environ 12 ans il y a | 0

| A accepté

Réponse apportée
Excel file customization via matlab
%Examples: set(cellstyle,'HorizontalAlignment','xlHAlignRight'); set(cellstyle,'VerticalAlignment','xlVAlignCenter'); ...

environ 12 ans il y a | 0

Réponse apportée
Excel file customization via matlab
Use this to get the cell object... exl = actxserver('excel.application'); exlWkbk = exl.Workbooks; exlFile = exlWkb...

environ 12 ans il y a | 1

Réponse apportée
how to define the input to the simulink from workspace as a columns?
See the implementation (attached) of the From Workspace blocks to split the matrix

environ 12 ans il y a | 0

| A accepté

Réponse apportée
SIMULINK signals and parameters
are you refering to this.. <http://www.mathworks.in/help/ecoder/ug/data-definition-and-declaration-management.html?searchHighli...

environ 12 ans il y a | 0

Réponse apportée
Programmatically save Simulnik profile data
If you are mentioning about Simulink model profiling options, check out Simulink.SoftwareTarget.profile in simulink doc...

environ 12 ans il y a | 0

Charger plus