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

casi 6 años hace | 0

Pregunta


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

casi 6 años hace | 1 respuesta | 0

1

respuesta

Pregunta


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

casi 6 años hace | 1 respuesta | 0

1

respuesta

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

casi 6 años hace | 0

| aceptada

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

casi 6 años hace | 1

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

casi 6 años hace | 0

| aceptada

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

casi 6 años hace | 0

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

casi 6 años hace | 0

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

casi 6 años hace | 0

| aceptada

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

casi 6 años hace | 0

| aceptada

Enviada


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

casi 6 años hace | 1 descarga |

0.0 / 5
Thumbnail

Pregunta


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

casi 6 años hace | 3 respuestas | 0

3

respuestas

Pregunta


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

casi 6 años hace | 1 respuesta | 0

1

respuesta

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

casi 6 años hace | 0

| aceptada

Resuelto


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

casi 6 años hace

Resuelto


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

casi 6 años hace

Resuelto


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

casi 6 años hace

Resuelto


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

casi 6 años hace

Resuelto


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

casi 6 años hace

Resuelto


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

casi 6 años hace

Resuelto


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

casi 6 años hace

Resuelto


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

casi 6 años hace

Resuelto


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

casi 6 años hace

Resuelto


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

casi 6 años hace

Resuelto


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

casi 6 años hace

Resuelto


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

casi 6 años hace

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

casi 6 años hace | 0