社区资料

照片

bym


NCSU

自2011年以来活跃

统计数据

All
  • 24个月连胜
  • Thankful Level 1
  • Pro
  • Knowledgeable Level 5
  • 第一个答案
  • Commenter
  • Solver

View badges

内容提要

View by

回答
方程式线性系统
Your equations are not independent. The second is 2 times the first

8 years ago | 1

|accepted

回答
互动问题的麻烦
here is a partial answer, without using symbolic tool box...see my comment above and you should be able to adapt the code to wha...

8 years ago | 0

|accepted

回答
Why is my Simpson's 3/8 code not producing the correct values?
your first loop should start at 2, second at 3, third at 4. Set end points for all loops at n-1. Make sure n is divisible by 3 ...

8 years ago | 1

回答
如何创建自定义曲线(只知道形状)
maybe this or similar would help

9年前|0

回答
ODE(Rayleigh-plesset方程)ODE15S中的误差的问题
检查您对ODE15S [T,R] = ODE15S('rp',[0 3E-8],[1E-6 70])的调用。%您的代码以下给您什么?[t,...

9年前|0

回答
Problem in reading data from Excel sheet and copying it in 2d array
反向i&j?%将数据从数字阵列复制到p的i = 1:1:1110的j = 1:1:1:6 ...

9年前|1

|accepted

回答
Issue with lsqcurvefit and langmuir type equation
see comments in revised code below myfun = @(x,xdata) (x(1)*x(2).*xdata)./(1+x(2).*xdata); %added elementwise operators ./ ...

9年前|0

回答
how do i save looped output into 1 variable matrix
C = 19;%d = [];p =零(C,1);k = 1:c;的%preallocation;z = [x(:,1),y(:,1)];p(k)= anova1(z);%d =保存(p)不必要的%x(...

9年前|0

回答
普莱斯帮我。matlab'while'循环。给出了一组数据。
x =[ 8, 10, 12, 14, 16] find(x>=11,1) ans = 3 *edit*----------------------------- x = 8 10 ...

9年前|0

回答
找到系数和多变量线性方程的常数。
You don't have enough points. 4 points < 5 unknowns

9年前|0

回答
Vandermonde矩阵和错误向量
X = V\B

9年前|0

回答
gaussian histogram so that area is equal to one.
对我来说,将垃圾箱的数量等于您的数据长度对我来说是没有意义的。直方图的目的是描述...

9年前|0

回答
使用PolyFit(非线性回归)的错误消息
我认为从信息中很明显。您没有足够的数据点来符合多项式的独特性。就像安装一条线...

9年前|0

|accepted

回答
Error using mupadmex " MuPAD "
Don't define wn as symbolic vo=input('vo='); xo=input('xo='); wn=input('wn='); syms t; %syms wn; comment this...

9年前|0

|accepted

回答
在“ for”循环中绘制
请参阅代码中的评论。我检查了几个值,他们同意您的Excel表,但要验证t ...

9年前|0

|accepted

回答
finding the breakeven point
您确定您的方程式是正确的吗?无论如何,这是一个带有修改方程的示例:f = @(c)log((c-1)./ log(1+c))...

9年前|0

回答
sum(w) and ones(1,size(w,2))*w' results totally different numbers
尝试一个(大小(w))*w。

9年前|0

回答
alpha的ttest问题
您不需要将“ alpha”传递给该函数,您会遇到错误,因为当字符串是ex ...

9年前|0

|accepted

回答
Cleaning-up Code With Comments
%{您是否在想多行评论?(卷曲牙套,而不是tildes)}%

9年前|1

回答
曲线拟合以获取伽马曲线参数
If you have the statistics toolbox, you can use: gamfit()

9年前|0

回答
to find area of parabola?
x = [7.8 8.25 8.55];y = [0.96 0.99 0.94];p = polyFit(x,y,2);%f = polyVal(x,p);X&P应该逆转...

9年前|0

|accepted

回答
Plot empties after using datetick
Clc; clear;关闭所有startdate = datenum('01 -01-2009');endDate = datenum('12 -31-2009');xdata = linspace(startda ...

9年前|1

|accepted

回答
How to plot in 4_D?
通过在命令窗口DOC切片中键入slice查看文档,请查看文档f ...

9年前|0

回答
辛普森的规则插图 - 如何创建那些抛物线?
这是我所做的<< http://snag.gy/cjsli.jpg >> clc; clear; clear;关闭所有x = linspace(0,4*pi);%创建数据...

9年前|1

回答
如何在MATLAB中求解P的最大负载?
所以,当我看到一个声明,说“求解问题e the above system of equations" I think of formulating the equations in matri...

9年前|1

回答
想要使线性拟合并在同一曲线上绘制两个图形
you are going to have to transform your data: x=[0;0.100000000000000;0.200000000000000;0.300000000000000;0.40000000000000...

9年前|0

|accepted

回答
Solving for a data point
pt2pt1 = @(m)((((y+1)*m^2)/((y-1)*m^2+2))^(y/(y/(y-1))*((y+1)/(2* y* m^ - (y-1))

9年前|0

回答
创建一个for循环,将数字添加到字母中
要洞悉尝试char(1:99)的情况,它对您所获得的东西看起来很熟悉吗?

9年前|0

回答
如何象征性获得值
alternative: c =sym(1:10) f = @(x) sum(c.*x.^(1:length(c)));

9年前|0

装载更多