photo

Akshit Bagde


Last seen: 3 years 前 自 2021 起处于活动状态

Followers: 0   Following: 0

统计学

MATLAB Answers

0 个提问
5 个回答

排名
3,503
of 297,457

声誉
16

贡献数
0 个提问
5 个回答

回答接受率
0.00%

收到投票数
0

排名
 of 20,438

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名

of 158,938

贡献数
0 个问题
0 个答案

评分
0

徽章数量
0

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Knowledgeable Level 2
  • First Answer

查看徽章

Feeds

排序方式:

已回答
Convert values in the cell to array using cell2mat
Convert the cell array to a row vector, and then try. It should work cell2mat(output1')

3 years 前 | 0

已回答
How can I apply zero of G(s) to my code
Hi Lee, If you want to calculate the zeros of a transfer fucntion, you can use zero fucntion zero(sys)

3 years 前 | 0

| 已接受

已回答
How to write a character sequence for parallel symbol?
\parallel is not available in MATLAB - here However, You can use either '\mid\mid' or '||'

3 years 前 | 0

| 已接受

已回答
Create a new struct array from values of old struct array satisfying condition
Hi! You are creating a 'char' array while using [struct_out.condition], and hence ending up getting only one logical output ins...

3 years 前 | 0

| 已接受

已回答
how to insert zeros in a certain column of only one row.
You can do this A = ones(1,210); A(116:170) = 0;

3 years 前 | 0

| 已接受