Feeds
질문
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년 전 | 답변 수: 0 | 0
0
답변질문
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년 전 | 답변 수: 1 | 0
1
답변질문
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년 전 | 답변 수: 1 | 0
1
답변질문
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년 전 | 답변 수: 1 | 0
1
답변질문
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년 전 | 답변 수: 1 | 0
1
답변질문
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년 전 | 답변 수: 2 | 0
2
답변질문
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년 전 | 답변 수: 1 | 0
