The Matlab Spot - MATLAB Central
photo

The Matlab Spot


自 2013 起处于活动状态

Followers: 0   Following: 0

消息

统计学

All
MATLAB AnswersCodyFile ExchangeFrom 11/13 to 04/25Use left and right arrows to move selectionFrom 11/13Use left and right arrows to move left selectionTo 04/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%
MATLAB Answers

0 个提问
32 个回答

File Exchange

2 文件

Cody

0 个问题
5 个答案

排名
1,416
of 298,264

声誉
50

贡献数
0 个提问
32 个回答

回答接受率
0.00%

收到投票数
7

排名
2,588 of 20,554

声誉
656

平均
4.60

贡献数
2 文件

下载次数
10

ALL TIME 下载次数
6074

排名
53,323
of 160,718

贡献数
0 个问题
5 个答案

评分
60

徽章数量
1

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

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

查看徽章

Feeds

排序方式:

已回答
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://...

10 years 前 | 0

| 已接受

已提交


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

11 years 前 | 3 次下载 |

0.0 / 5
Thumbnail

已回答
How to use loop in Simulink model
Refer <http://www.mathworks.in/help/simulink/slref/foriterator.html this link>

11 years 前 | 0

已回答
How to find degree of polynomial in Matlab?
See if <http://www.mathworks.in/help/matlab/ref/polyval.html polyval> helps

11 years 前 | 0

已提交


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

11 years 前 | 7 次下载 |

4.6 / 5
Thumbnail

已回答
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-...

11 years 前 | 0

已回答
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

11 years 前 | 0

已回答
running c program in matlab
I dont know if you have referred <http://www.mathworks.in/help/simulink/s-function-basics.html s-functions>

11 years 前 | 0

已回答
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-...

11 years 前 | 0

已回答
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...

11 years 前 | 0

已回答
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...

11 years 前 | 0

已回答
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_...

11 years 前 | 2

| 已接受

已解决


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

11 years 前

已回答
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...

11 years 前 | 0

| 已接受

已回答
copy-on-write, performance, and code readability
Check this out <http://www.matlabtips.com/how-to-point-at-in-matlab/ Using Pointers in MATLAB>

11 years 前 | 0

已回答
A number base converter
check this out ... <www.mathworks.in/help/matlab/ref/dec2hex.html>

11 years 前 | 0

已回答
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-...

11 years 前 | 0

已回答
Running an m-file from C#
Check this out... <http://www.mathworks.com/matlabcentral/fileexchange/12987-integrating-matlab-with-c Integrating-matlab-with-...

11 years 前 | 0

已解决


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

11 years 前

已解决


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

11 years 前

已解决


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

11 years 前

已解决


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:...

11 years 前

已回答
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...

11 years 前 | 0

| 已接受

已回答
Change a read-only file to writable
Search for function fileattrib in the matlab documentation

11 years 前 | 0

| 已接受

已回答
Excel file customization via matlab
%Examples: set(cellstyle,'HorizontalAlignment','xlHAlignRight'); set(cellstyle,'VerticalAlignment','xlVAlignCenter'); ...

11 years 前 | 0

已回答
Excel file customization via matlab
Use this to get the cell object... exl = actxserver('excel.application'); exlWkbk = exl.Workbooks; exlFile = exlWkb...

11 years 前 | 1

已回答
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

11 years 前 | 0

| 已接受

已回答
SIMULINK signals and parameters
are you refering to this.. <http://www.mathworks.in/help/ecoder/ug/data-definition-and-declaration-management.html?searchHighli...

11 years 前 | 0

已回答
Programmatically save Simulnik profile data
If you are mentioning about Simulink model profiling options, check out Simulink.SoftwareTarget.profile in simulink doc...

11 years 前 | 0

加载更多