Daniel M


Active since 2016

Followers: 0   Following: 0

Statistics

MATLAB Answers

7 Questions
0 Answers

RANK
274,303
of 301,664

REPUTATION
0

CONTRIBUTIONS
7 Questions
0 Answers

ANSWER ACCEPTANCE
14.29%

VOTES RECEIVED
0

RANK
 of 21,377

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 176,019

CONTRIBUTIONS
0 Problems
0 Solutions

SCORE
0

NUMBER OF BADGES
0

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Discussions

AVERAGE NO. OF LIKES

  • Thankful Level 1

View badges

Feeds

View by

Question


I want to integrate the below code with respect to ls but im getting an error. Please help
P=[0,0.1*1E8,0.2*1E8,0.3*1E8,0.4*1E8,0.5*1E8,0.6*1E8,0.7*1E8,0.8*1E8,0.9*1E8,1*1E8] for i=1:length(P) d(i)=((3*P(i)*a^4)*(...

10 years ago | 0 answers | 0

0

answers

Question


I need to implement the following formula in my code but getting an error as "First input argument must be a function handle."How do i proceed? a nd v has been defined in prior
%ELONGATION CALCULATION% P=[0,0.1*1E8,0.2*1E8,0.3*1E8,0.4*1E8,0.5*1E8,0.6*1E8,0.7*1E8,0.8*1E8,0.9*1E8,1*1E8] for i=1:length(P)...

10 years ago | 1 answer | 0

1

answer

Question


I am getting the following error as matrix dimensions do not agree even if i have used linspace in line 44 i.e for finding out arc(i).The code is as follows.please help.
P=82.7*1E6; a=75*1E-6; W=pi*P*a*a; v=0.3; h = linspace(1*1E-6,6*1E-6); for i=1:length(h) stress(i)=((3*W*v)...

10 years ago | 1 answer | 0

1

answer

Question


There is a problem with respect to the display of the plot for the following code.I am getting a blank figure for the second plot.I want to know what is the mistake in the second graph.Please help.
P=82.7*1E6; a=75*1E-6; W=pi*P*a*a; v=0.3; h = linspace(1*1E-6,6*1E-6); for i=1:length(h) stress(i)=((3*W*v)...

10 years ago | 1 answer | 0

1

answer

Question


I'm getting the error as matrix dimensions must agree for the following code.How do I correct the error?
P=82.7*1E6; a=75*1E-6; W=pi*P*a^2; v=0.3; h = linspace(1*1E-6,6*1E-6); for i=1:length(h) str...

10 years ago | 1 answer | 0

1

answer

Question


I am getting the error as "Error using * Inner matrix dimensions must agree. Error in O1 (line 8) stress=((3*W*v)/(4*pi*h*h));" for the following code.Please help me out
r=0.6; P=82.7*1E-6; a=150*1E-6; W=pi*a*2*P; v=0.3; h = linspace(1*1E-6,4*1E-6); stress=((3*W*v)/(4*pi*h*h)); plot(h,stre...

10 years ago | 2 answers | 0

2

answers

Question


I am not getting the plot for thr following code.Can anyone please identify the mistake?
r=0.6; P=82.7*10.^6; a=150*10.^-6; W=pi*a*2*P; v=0.3; for h = [1*10.^-6,4*10.^-6]; stress=(3*W*v)/(4*pi*h.^...

10 years ago | 1 answer | 0

1

answer