photo

nelson


自 2017 起处于活动状态

Followers: 0   Following: 0

统计学

MATLAB Answers

11 个提问
2 个回答

排名
40,529
of 300,853

声誉
1

贡献数
11 个提问
2 个回答

回答接受率
36.36%

收到投票数
1

排名
 of 21,094

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名

of 171,319

贡献数
0 个问题
0 个答案

评分
0

徽章数量
0

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Thankful Level 3

查看徽章

Feeds

排序方式:

提问


how to vectorized this loop?
for k=1:0.5:10; for a=1:0.5:10; nump(i,:) =k*a; denp(i,:) =[1 a 0]; i=i+1; end ...

8 years 前 | 0 个回答 | 0

0

个回答

提问


how to vectorize these "for loop"?
clear all; close all; clc; i=1; for k=1:0.5:10; for a=1:0.5:10; for b= 1:0.5:10; ...

8 years 前 | 2 个回答 | 1

2

个回答

提问


is there any substitute for "gather" function in MATLAB?
tic k = gpuArray(1:0.5:10); a = gpuArray(1:0.5:10); n1 = numel(k); nump = kron(k, ones(1, length(a)))'; n2 ...

8 years 前 | 0 个回答 | 0

0

个回答

提问


when i am trying to convert this code into gpuArray then i will not get the same result?
clc; clear; close all; tic k = 1:0.5:10; a = 1:0.5:10; n1 = numel(k); nump = kron(k, ones(1, length(a))...

8 years 前 | 0 个回答 | 0

0

个回答

已回答
how can i vectorize this for loop??
thnku sir...... is it possible to vectorize these two for loops??

8 years 前 | 0

提问


how can i vectorize this for loop??
clc; clear all; close all; k = 1:0.5:10; a = 1:0.5:5; n1 = numel(k); nump = kron(k,ones(1,length(a)))'; ...

8 years 前 | 3 个回答 | 0

3

个回答

提问


is there an any alternate of "P=freqcp(num,den,w);" this for same code?
clc; clear; close all; num=[1 5]; for A=0:10 den=[1 A 8 6]; end w=[.1,.5,.8,1,2,8,15]; P=freqcp(num,den,w); plottmpl(w,...

8 years 前 | 0 个回答 | 0

0

个回答

提问


How can i generate the "Template" for the given plant sets in cde using QFT toolbox?
clc; clear all; close all; tic k=1:0.5:10; a=1:0.5:5; w=[.001 .0036 .0126 .0464 .1668 .5995 2.1544] [K, A] = ndgrid(k, ...

8 years 前 | 0 个回答 | 0

0

个回答

提问


I got error while executing this solution
tic k = gpuArray(1:0.5:10); a = gpuArray(1:0.5:5); n1 = numel(k); n2 = numel(a); numpl = repmat(k, 1, n2)'; ...

8 years 前 | 1 个回答 | 0

1

个回答

提问


how to vectorize this "For Loop" ?
close all clear all clc tic; for k=1:0.5:10; for a=1:0.5:5; num=k; den=[1 a 0]; ...

8 years 前 | 2 个回答 | 0

2

个回答

已回答
how to find bode plot,phase magnitude plot and template in control system?
while running this solution,i got this error "Error in dcmotor (line 18) plot(w,20*log10(Magnitude(k1,:)))" close al...

8 years 前 | 0

提问


how can I plot bode plot and phase magnitude plot of this code?
close all; clear all; clc; w=[.001 .0036 .0126 .0464 .1668 .5995 2.1544 7.7426 27.8256 100 200]; for k=1:0.5:10; for a=...

8 years 前 | 0 个回答 | 0

0

个回答

提问


how to find bode plot,phase magnitude plot and template in control system?
z=1:0.5:10; a=1:0.5:5; num=kron(z,ones(1,length(a))); i=1:length(a); deno=zeros(9,3); deno(i,1)=1; deno(i,2)=a(i); den=re...

8 years 前 | 2 个回答 | 0

2

个回答