photo

Muhammad Qaisar Ali


Pakistan Institue of Engineering and Applied Sciences

Last seen: 5 months 前 自 2020 起处于活动状态

Followers: 0   Following: 1

消息

Programming Languages:
Python, C++, C, Java, MATLAB, HTML, Arduino, Assembly, VHDL
Spoken Languages:
English, Hindi
Professional Interests:
Control Systems, Robust Controllers, Adaptive Control, Nonlinear Control, Electronics

统计学

MATLAB Answers

2 个提问
4 个回答

排名
7,084
of 300,028

声誉
6

贡献数
2 个提问
4 个回答

回答接受率
100.0%

收到投票数
3

排名
 of 20,860

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名

of 167,043

贡献数
0 个问题
0 个答案

评分
0

徽章数量
0

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Thankful Level 2
  • Revival Level 1
  • Explorer
  • First Review
  • First Answer

查看徽章

Feeds

排序方式:

提问


How to return an intermediate variable from ode45 in Matlab
What I want Hi there. I want to store or return an intermediate calculations in global variable at spacific time instants. For...

3 years 前 | 1 个回答 | 0

1

个回答

提问


Simscap Scope shows wrong data.
I am simulating an RL Circuit. when i take simulation time 10 ses, the graph on scope is nonsence. if anyone know, how to fix ...

4 years 前 | 1 个回答 | 0

1

个回答

已回答
Assignment question based on excel file I/O
function distance = get_distance(city_1,city_2) persistent distt city_names; if isempty(distt) && isempty(city_names) ...

5 years 前 | 1

已回答
Problems with coursera image blur matlab problem
function output = blur(img,w); [r,c]=size(img); output=ones(r,c); for ri=1:r for ci=1:c ...

5 years 前 | 1

已回答
Echo generator problem - Coursera Introduction to Matlab Programming
function output = echo_gen(input, fs, delay, amp) delay_mat=zeros(round(delay*fs),1); % a col vector. echo_mat=([de...

5 years 前 | 0

已回答
how to find the element which is greater than or equal to its row and smaller or equal to its column in a matrix
another approch function indices = saddle(Z) indices=[]; for r=1:size((Z),1) % going through Rows for c=...

5 years 前 | 1