回答済み
How to skip paretosearch iteration
In the objective function, you can put a large penalty or result to make it like a bad result, so pattern search won't consider ...

5年弱 前 | 0

質問


fprintf can't make new line
I want to edit a line of a text file (tcl file actually). I tried with following code: A = 5; tcl = regexp(fileread('old_file....

5年弱 前 | 1 件の回答 | 0

1

回答

質問


Rotate 3D surface matrices
I have three matrices for surf command: X, Y, Z. I need to rotate the matrices along z-axis by some degrees. I remember there is...

5年弱 前 | 1 件の回答 | 0

1

回答

回答済み
Finding Rest of Row
Do you mean like vlookup in excel? Try this: data = randi(1,4,5); % Just an example matrix first = data(randi(4),1); % Example...

5年弱 前 | 0

| 採用済み

回答済み
Battery charging profile - Most efficient way of plotting
I have suggestion for your long repetitive elseif, try to use this instead: z = randi(100); zLim = [logspace(0,2,9) Inf]; % li...

約5年 前 | 1

回答済み
How to plot graph from equation
I'm not sure what do you want, is it like this? x3 = [1 0.1 0.01 0.001]; x2 = zeros(3,4); for i=1:4 x1 = [-2 1 0;1 -2 1;...

約5年 前 | 0

| 採用済み

回答済み
Error using optimization tool bx
Try this [x,fval] = ga(@objective,6); function f = objective(x) f = -2.84.*x(:,1)+0.22.*x(:,2)+3.33.*x(:,3)-1.09.*x(:,4...

約5年 前 | 0

回答済み
Add legend to each figure()???
You need to make the x and y data separately, like this: figure(1) plot(x,P1) hold on plot(x,P2) plot(x,P3) plot(x,TotalDe...

約5年 前 | 0

回答済み
Summing up the answers in for loop that meets criteria
Try this criteria=zeros(220,1) for n = 1:220 pfc = A(combi(n,1),1:270); fef = B(combi(n,2),1:270); zpfc = zscore(pfc); zf...

約5年 前 | 0

| 採用済み

回答済み
Nonlinear constraint function with the optimization toolbox
Seems you have extra parameters beside the optimization input variables. See these explanation: https://www.mathworks.com/help...

約5年 前 | 0

| 採用済み

送信済み


Plot Frame Structure
Function for plotting frame/bar structure from node coordinate and element connectivity matrix

約5年 前 | ダウンロード 1 件 |

Thumbnail

質問


How to call variable (with index) using string?
Suppose I have many variables with arbitrary names in my workspace with all same size. I also have an identical logical index fo...

約5年 前 | 3 件の回答 | 0

3

回答

質問


How to delete axes and tick in figure?
I make a contour plot, and then add another line plot in the same figure. For example: contour(x,y,z) hold on plot(xx,yy) ho...

約5年 前 | 1 件の回答 | 0

1

回答

回答済み
The variable Edj appears to change size consider preallocating
The size of your matrix changes at every iteration. Make zero matrix before looping. For example: Edj = zeros(d,n); *edited fo...

約5年 前 | 0

| 採用済み

解決済み


Vector creation
Create a vector using square brackets going from 1 to the given value x in steps on 1. Hint: use increment.

約5年 前

解決済み


Doubling elements in a vector
Given the vector A, return B in which all numbers in A are doubling. So for: A = [ 1 5 8 ] then B = [ 1 1 5 ...

約5年 前

解決済み


Create a vector
Create a vector from 0 to n by intervals of 2.

約5年 前

解決済み


Flip the vector from right to left
Flip the vector from right to left. Examples x=[1:5], then y=[5 4 3 2 1] x=[1 4 6], then y=[6 4 1]; Request not ...

約5年 前

解決済み


Whether the input is vector?
Given the input x, return 1 if x is vector or else 0.

約5年 前

解決済み


Find max
Find the maximum value of a given vector or matrix.

約5年 前

解決済み


Get the length of a given vector
Given a vector x, the output y should equal the length of x.

約5年 前

解決済み


Inner product of two vectors
Find the inner product of two vectors.

約5年 前

解決済み


Arrange Vector in descending order
If x=[0,3,4,2,1] then y=[4,3,2,1,0]

約5年 前

解決済み


Select every other element of a vector
Write a function which returns every other element of the vector passed in. That is, it returns the all odd-numbered elements, s...

約5年 前

解決済み


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 ...

約5年 前

解決済み


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

約5年 前

回答済み
can anyone help me about nonlinear MDOF newmark beta dynamic analysis?
Hope these give insight: Linear mdof: https://www.mathworks.com/matlabcentral/fileexchange/71936-mdof-solver-of-nonclassicaly-d...

約5年 前 | 0