matlab表示一个hn,HN - MATLAB Central

Solved

Maximum value in a matrix

Find the maximum value in the given matrix.

For example, if

A = [1 2 3; 4 7 8; 0 9 1];

then the answer is 9.

2 months ago

Question

How to speed up iterating a large data in a nested loop ?

%example

a=1x1000;

b=1x1000;

for i=1:length(a)

for j 1:length(b)

x(i,j)=cos(a(i));

y(i,j)=sin(b(j...

3 months ago | 1 answer | 0

1answer

Question

fmincon and fmiunc gives different result for the same problem

Can anyone help how to setup the result from fmincon and fminunc to give the same result for same problem ?

Thanks

4 months ago | 1 answer | 0

1answer

Question

global convergence of quasi-newton

Is there any way to pick a global optimum point in the quasi-newton algorithm of matlab?

Thanks

4 months ago | 0 answers | 0

0answers

Question

Function for linearization of nonlinear system of equations

V =F(rp,x1,x2,theta(t), psi(t), phi(t),wx(t),wy(t) ) is a non linear equation and the objective is to minimize output vector V f...

4 months ago | 0 answers | 0

0answers

Answered

Why option for fmincon is not working ?

I got it why. The nonlcon argument has been skipped.

[V,fval,exitflag,output,lambda,grad,hessian] = fmincon(fun,x,[],[],[],[],L...

4 months ago | 0

| accepted

Question

Why option for fmincon is not working ?

I defined the option as follows and it is not working. I tried many other options as well. Could anyone gives some idea ? Thank...

4 months ago | 2 answers | 0

2answers

Question

fminunc for upper and lower bound variable definition ?

Isn't it possible to give upper and lower bound for the variables in the objective function while using fminunc ?

Thank you.

5 months ago | 2 answers | 0

2answers

Question

Visualize (plot) 3D array data

Surf and mesh functions are not handling the following data. Is it me or other methods should be used ? Thanks

ts=5;

t=0:1/...

5 months ago | 0 answers | 0

0answers

Question

Can any one check why quasi-newton is not working for my function ?

function V = PRSopt_QN(radius,alpha,beta)

%% Calling the function

fun = @(x)PRSopt_QN(x(1),x(2),x(3));

x0 = [0.25, ...

5 months ago | 0 answers | 0

0answers

Question

Quasi newton method for NLP code problem

Hello, Can some one tell whats wrong with the following program ? I tried to change x and evaluate V but I got some difficulti...

5 months ago | 1 answer | 0

1answer

Question

Appropriate nonlinear optimization tool in matlab

I have objective funciton subjected to . The optimization design variables are and . I cannot linearize the function to use L...

5 months ago | 0 answers | 0

0answers

Question

How to work with a matrix close to singular in MATLAB ?

I've ill-conditioned matrix which shows its inverse close to singular. So, the minimization solution is unstable. The psedoinve...

5 months ago | 1 answer | 0

1answer

Question

Why Matlab tells the following A*A^T matrix is not a positive Semi-definite Matrix ?

M = [ 1.0000 0 0 0 0 0;...

0 0.9803 -0.0000 -0.0000 -0.0984 0.0984;...

5 months ago | 1 answer | 0

1answer

Question

Why matlab live editor and matlab script gives different rank calculation result for the same matrix ?

I suddenly found matlab is misundesrstanding this matrix and checked it with matlab live editor. Then, matlab live gives the...

5 months ago | 2 answers | 0

2answers

Solved

matrix zigzag

Unfold a 2-D matrix to a 1-D array in zig-zag order, e.g., for matrix

[ 1 2 3 ;

4 5 6 ;

7 8 9 ]

the resulting 1-...

6 months ago

Solved

Simple equation: Annual salary

Given an hourly wage, compute an annual salary by multiplying the wage times 40 and times 50, because salary = wage x 40 hours/w...

6 months ago

Question

Why is it so hard for MATLAB to solve the following symbolic equation

syms rp alpha beta theta psi z

A=cos(alpha)-cos(beta);

B=sin(alpha)-sin(beta);

C=(cos(beta)-1)/tan(beta)-(cos(alpha)-1)/tan(a...

7 months ago | 1 answer | 0

1answer

Question

Solving trigonometric equation (decoupling)

I wanted to solve as a function of other variables

Is is possible to decouple this equation ?

Even matlab symbolic gave m...

7 months ago | 2 answers | 0

2answers

Question

Numerical integration RK4 for the given data

I have the angular veocity data shown below and wanted to apply , where.

w

Columns 1 through 9

5.0468 0.1049 -0....

7 months ago | 1 answer | 0

1answer

Question

Symbolic Derivative in matlab

Can matlab diffrentiate F with respect to , and only ?.

Any help is apperciated

7 months ago | 1 answer | 0

1answer

Question

Output argument "St" (and maybe others) not assigned during call to "function ".

I got an error

Output argument "St" (and maybe others) not assigned during call to "get_StCarretero".

Error in InverseVeloc...

7 months ago | 0 answers | 0

0answers

Question

Evaluate gradient function in the for loop.

is a function dependent on time. It is n the function and need to be differentiated to get and the differentiation should pa...

7 months ago | 1 answer | 0

1answer

Question

Interpolating angle between -0.2 to 0.2 rad

Can anyone help for a valid interpolation of an angle from -0.2 to 0.2 to give 1001 points in between? SLERP is not doing this ...

7 months ago | 1 answer | 0

1answer

Question

Algorithm to extract linearly dependent columns in a matrix

Is there any general or standard approach to extract columns that are linearly dependent from the given matrix ?

Thanks and an...

8 months ago | 3 answers | 0

3answers

Question

Interpolating the data given between -pi and pi

I have the following program and wanted to get the value between - and . But the program I made below only gives . Any help is ...

8 months ago | 1 answer | 0

1answer

Answered

xlswrite multidimensional array in one sheet.

This works, in any case if someone need it

T=matrix ;

for j=1:length(matrix)

T(8*(j-1)+[1,dim(matrix)],:)=matrix(:,:,j)...

10 months ago | 0

| accepted

Question

xlswrite multidimensional array in one sheet.

I tried to export 6 x 6 x 1000 matrix from matlab to exel. However, the xlswrite overwrite it.

I used the following loop to ...

10 months ago | 2 answers | 0

2answers

Submitted

Four-bar-Linkage-simulation

This program is to solve inverse kinematics of four-bar linkage. Graphics simulation is included to see the solution on board.

10 months ago | 22 downloads |

Solved

Find the sum of all the numbers of the input vector

Find the sum of all the numbers of the input vector x.

Examples:

Input x = [1 2 3 5]

Output y is 11

Input x ...

10 months ago

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值