photo

Aijalon Marsh


Last seen: 2年弱 前 2020 年からアクティブ

Followers: 0   Following: 0

統計

MATLAB Answers

17 質問
2 回答

ランク
13,670
of 300,364

評判
3

コントリビューション
17 質問
2 回答

回答採用率
52.94%

獲得投票数
2

ランク
 of 20,934

評判
N/A

平均評価
0.00

コントリビューション
0 ファイル

ダウンロード
0

ALL TIME ダウンロード
0

ランク

of 168,407

コントリビューション
0 問題
0 解答

スコア
0

バッジ数
0

コントリビューション
0 投稿

コントリビューション
0 パブリック チャネル

平均評価

コントリビューション
0 ハイライト

平均いいねの数

  • Thankful Level 3
  • Thankful Level 2

バッジを表示

Feeds

表示方法

質問


I wrote a code to replicate the image to the right but for some reason the M3 and the M2 are on opposite sides and the M1 is completely wrong. Please help me fix this
clc clear all %Given: M1 = 3; G = 1.4; tot = 180; Theta= zeros(1,tot); p2_p1= zeros(1,tot); n=1; for i = 1 : 0....

2年弱 前 | 1 件の回答 | 0

1

回答

質問


On line 53: error = abs(-15 - Theta(i)); . I'm getting an error that says, "Index exceeds the number of array elements. Index must not exceed 17901". what am I doing wrong?
clc clear all %Given: M1 = 3; G = 1.4; tot = 180; Theta= zeros(1,tot); p2_p1= zeros(1,tot); n=1; for i = 1 : 0....

2年弱 前 | 1 件の回答 | 0

1

回答

質問


How to mark points at 1-5 on the x-axis in the plot
clc; clear all ; Ld=(0:0.00005:0.005); w=0.001; L=0.007; P=4*0.001; Ta=25; h=375; Kf=175; Kd=0.032; Tb=75; Ap=3.02...

約2年 前 | 2 件の回答 | 0

2

回答

質問


Why won't my plot start 0 and increase to 0.005 like my Ld
Ld=(0:0.001:0.005); w=0.001; L=0.007; P=4*0.001; Ta=25; h=375; Kf=175; Kd=0.032; Tb=75; Ap=3.02*10^-3; N=238; Ac=10^-...

約2年 前 | 2 件の回答 | 0

2

回答

質問


Incorrect Dimensions for matrix multiplication
Ld=(0:0.001:5); L=0.007; Ta=25; h=375; Kf=175; Kd=0.032; Tb=75; Ap=3.02*10^-3; N=238; Ac=10^-6; m=92.58; Lf=L-Ld; Rt...

約2年 前 | 3 件の回答 | 0

3

回答

質問


Vectors must be same length
% Define constants L = 50; % Length of the plate in cm W = 30; % Width of the plate in cm T_top = 85; % Temperature at the to...

約2年 前 | 1 件の回答 | 0

1

回答

質問


Why won't my code run even though it has no errors
% Define constants L = 50; % Length of the plate in cm W = 30; % Width of the plate in cm T_top = 85; % Temperature at the to...

約2年 前 | 2 件の回答 | 0

2

回答

質問


I'm trying to plot to function but keep getting an error saying "Vectors must be the same length." how do I fix this
for w = [2,5,8]' for t = (0:1:6)' T = 0.15; y = 1./(sqrt(1+(w*T).^2)); y1 = -atan(w*T); plot(t,y,t,y1) ...

3年以上 前 | 1 件の回答 | 0

1

回答

質問


I made a function and m-file to call that function but for some reason its giving me an error of "Undefined function or variable y" please help to fix my code
Function: function MagnitudeRatio2ndOrder(E, W, w) y= 1/(sqrt((1-(w/W)^2)^2+((2*E*w)/W)^2)); end New m-file: clear E = 0...

3年以上 前 | 1 件の回答 | 0

1

回答

質問


Unrecognized function or variable
So I have made a funtion and an m-file for calling that function but for some reason when I run the my m-file it says that the y...

3年以上 前 | 2 件の回答 | 0

2

回答

質問


Why am I getting Index exceeds the number of array elements. Index must not exceed 751.
clear syms t; Fs = 1.5; % Sampling frequency T = 1/Fs; % Sampling period ...

3年以上 前 | 1 件の回答 | 0

1

回答

質問


Why am I getting Index in position 1 is invalid. Array indices must be positive integers or logical values.
clear syms t; Fs = 1.5; % Sampling frequency T = 1/Fs; % Sampling period ...

3年以上 前 | 3 件の回答 | 0

3

回答

質問


why am I getting "Array indices must be positive integers or logical values"
clear syms t; Fs=5; T=1/Fs; L=1500; t=(0:L-1)*T; Yo=4+4.005*(sin(t)+sin(3*t)/3+sin(5*t)/5+sin(7*t)/7); y = fft(Yo)...

3年以上 前 | 3 件の回答 | 0

3

回答

質問


Plugging function in a function
Hello so I have this problem that requires me to plug y(0)=0 into y=C1 I was looking into something called function handling but...

5年弱 前 | 0 件の回答 | 0

0

回答

質問


Sturm-Liouville eigenfunctions and the equations that define the eigenvalues
Hey so I'm trying to solve this Sturm-Liouville problem. Here is something I've written so far but I'm not sure how I can apply ...

5年弱 前 | 0 件の回答 | 2

0

回答

質問


Complex Fourier Series in MATLAB
Hello I'm tyring to solve this Complex fourier series porblem but for some reason when I solve for F1 I get an error and I'm not...

約5年 前 | 1 件の回答 | 0

1

回答

回答済み
Expansion in a Fourier Series
Because when I did the hand calculations for this problem after sovling the definite integral for bn I got (1-cos(n*pi))/(n*pi) ...

約5年 前 | 0

回答済み
Expansion in a Fourier Series
Hey I was writing this code for expansion in fouries series I have this code but the bn coefficient for some reason it wont int...

約5年 前 | 0

質問


Expansion in a Fourier Series
I created a code that is supposed to calculate a0, an, bn, and f(x), for some reason it won't work when I include cos(n*pi)=(-1)...

約5年 前 | 7 件の回答 | 0

7

回答