Subhadra Mahanti - MATLAB Central
photo

Subhadra Mahanti

MathWorks

自 2015 起处于活动状态

Followers: 0   Following: 0

消息

统计学

All
MATLAB AnswersCodyFile ExchangeFrom 08/15 to 04/25Use left and right arrows to move selectionFrom 08/15Use 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 个提问
12 个回答

File Exchange

1 文件

Cody

0 个问题
5 个答案

排名
2,029
of 297,986

声誉
32

贡献数
0 个提问
12 个回答

回答接受率
0.00%

收到投票数
8

排名
11,592 of 20,517

声誉
39

平均
2.00

贡献数
1 文件

下载次数
1

ALL TIME 下载次数
397

排名
53,594
of 160,028

贡献数
0 个问题
5 个答案

评分
60

徽章数量
1

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • First Submission
  • Revival Level 2
  • Knowledgeable Level 2
  • First Answer
  • Solver

查看徽章

Feeds

排序方式:

已回答
how to create a new library in matlab library browser?
You can add your library using the SLBLOCKS mechanism. Follow the steps in this page: https://www.mathworks.com/help/simulink/u...

7 years 前 | 0

已提交


World Population Growth
World population map and growth chart

9 years 前 | 1 次下载 |

2.0 / 5
Thumbnail

已回答
Comparing cell arrays of symbolic variables
isequal(G{1},G{2}) The above code will return if true and 0 otherwise.

9 years 前 | 0

已回答
How to pre-allocate table rows
I can think of several ways to do it depending on your data. One way would be: create a cell array of row x column and covert ...

9 years 前 | 2

已回答
how to calculate the value of u(x,t)=exp(at+bx) for x=0 to 1 and t=0 to 1
You didn't mention values of a and b. So I am passing that as an argument here. u_xt = @(x,t,a,b) exp(a*t+b*x); % Create a...

9 years 前 | 0

已回答
Is it possible to delete the Simulink (R2014b) browser history (back/forward/up to parent) of a model without restarting MATLAB?
Why restart MATLAB? Doesn't closing the model help? E.g. bdclose all %or if you want to just close a specific model (say a...

9 years 前 | 0

已回答
What is that symbol next to the outport of a simulink block?
The magnifying glass on a signal stands for a test point. You can add a test point to a signal through right-clicking on a signa...

9 years 前 | 1

| 已接受

已回答
how to find the floating scope in simulink model?
To find a floating scope in a model find_system(aModel,'AllBlocks','on','BlockType','Scope','Floating','on') To find a f...

9 years 前 | 0

已回答
Searching for a directory in matlab Path
If _exist(myDir,'dir')==7_ I usually go to the MATLAB root and do a system find, but remember this can return several values ...

9 years 前 | 0

已回答
Why does 'filesep' not work with 'gcb'?
When you are writing MATLAB scripts to get or set block names or paths, use forward slashes as forward-slashes are always used a...

9 years 前 | 1

| 已接受

已回答
check whether a Simulink handle is a block or model programmatically
Shafiul To determine whether a handle (say h) is that of a block or model, just query its type: get_param(h,'Type') For...

9 years 前 | 1

| 已接受

已回答
Update library repository for simulink custom library
The following flag ' *Choice*' needs to be added to your SLBLOCKS file. The flag indicates that the SLBLOCKS author wants to rep...

9 years 前 | 3

| 已接受

已解决


Add offset to a signal
Produce the following signal: <<http://blogs.mathworks.com/images/seth/cody/add-offset-eqn.png>> You should see a downward...

9 years 前

已解决


Produce a sine wave
Produce a sine wave with amplitude 3: <<http://blogs.mathworks.com/images/seth/cody/sine-eqn.png>>

9 years 前

已解决


Produce a cosine wave
Produce the following signal: <<http://blogs.mathworks.com/images/seth/cody/cosine-eqn.png>>

9 years 前

已解决


Add a block to a model
Produce the following signal: <<http://blogs.mathworks.com/images/seth/cody/add-block-eqn.png>> In this case, the slope of...

9 years 前

已解决


Connect blocks in a model
Connect the blocks in the model to produce the following signal: <<http://blogs.mathworks.com/images/seth/cody/connect-blocks...

9 years 前