Community Profile

photo

Ahmed Alhawaj


Last seen: 4 years ago Active since 2020

Statistics

  • Thankful Level 1

View badges

Content Feed

View by

Question


How can I show the max point on a plot ?
I am having hard time figuring out a way to show the max point on a plot

4 years ago | 1 answer | 0

1

answer

Question


Newton's method(calculating theta)
w = 30; h = 30; b = 3.5; % In inches f = @(theta) w*sind(theta) - h*cosd(theta) - b; fp = @(theta) w*cosd(theta)+h*sind(thet...

4 years ago | 1 answer | 0

1

answer

Question


Newton's method(calculating the angel)
%% Newton's method w = 30; h = 30; c = 3.5; % In inches f = @(theta) w*sind(theta) - h*cosd(theta) - c; fp = @(theta) w*cos...

4 years ago | 1 answer | 0

1

answer

Question


Bisection method (figuring out theta)
clc; clear; %% Initialize w = 30; h = 30; c = 3.5; % In inches %% Bisection a= 49.04; b = 50.5; f = @(theta) w*...

4 years ago | 1 answer | 0

1

answer

Question


Picnic Table (Newton-bisection)
I want help with part d

4 years ago | 0 answers | 0

0

answers

Question


why do I get Array indices must be positive integers or logical values?
1-t=linspace(0,0.2); 2-wn=104; 3-uo=1; 4-zeta1=0.1; 5-zeta2=0.3; 6-zeta3=0.9; 7-wd1=wn*(sqrt(1-(zeta1^2))); 8-wd2=wn*(sqr...

4 years ago | 2 answers | 0

2

answers