
Jan Valdman
Associate professor of applied mathematics https://sites.google.com/site/janvaldman/ Professional Interests: FEM, nonlinear computational mechanics, a posteriori error estimates, MATLAB vectorizations
Statistiken
RANG
9.666
of 279.949
REPUTATION
2
ANTWORTZUSTIMMUNG
37.5%
ERHALTENE STIMMEN
2
RANG
684 of 18.777
REPUTATION
2.549
DURCHSCHNITTLICHE BEWERTUNG
4.40
BEITRÄGE
27 Dateien
DOWNLOADS
92
ALL TIME DOWNLOADS
24500
BEITRÄGE
0 Beiträge
BEITRÄGE
0 Öffentlich Kanäle
DURCHSCHNITTLICHE BEWERTUNG
BEITRÄGE
0 Highlights
DURCHSCHNITTLICHE ANZAHL DER LIKES
Content Feed
Gesendet
Enlarge figure axes by a given factor
Given a figure with (eg. tight) axes, this simple code automatically recalculates and enlarges axes them by a prescribed factor....
7 Monate vor | 1 Download |

Gesendet
Constitutive model of shape memory alloys
An unconstrained minimization of FEM discretized energies.
7 Monate vor | 6 Downloads |

Gelöst
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 ...
8 Monate vor
Frage
quasi-Newton method with initial Hessian + preconditioning
I am heavily dependent on the quasi-Newton method in the minimization of nonlinear energies f(x)-> min discretized by the fi...
8 Monate vor | 0 Antworten | 0
0
AntwortenGesendet
Equilibria of economical models with cost of change
Evaluations of Cournot-Nash and Stackelber-Cournot-Nash equilibria for models with several firms using Gauss method
mehr als ein Jahr vor | 4 Downloads |

Gesendet
Semismooth* Newton method for contact friction problems
Finite element solution of a contact problem with a Tresca friction by the semismooth* Newton method.
etwa 2 Jahre vor | 2 Downloads |

Gelöst
Get all prime factors
List the prime factors for the input number, in decreasing order. List each factor. If the prime factor occurs twice, list it as...
mehr als 2 Jahre vor
Frage
A fast cell array generation
Dear all, in our optimization procedure, we need to create a cell array 'v_indices' from a vector 'v' and another cell array of...
mehr als 2 Jahre vor | 1 Antwort | 0
1
AntwortGelöst
Swap the first and last columns
Flip the outermost columns of matrix A, so that the first column becomes the last and the last column becomes the first. All oth...
mehr als 2 Jahre vor
Gelöst
Swap the input arguments
Write a two-input, two-output function that swaps its two input arguments. For example: [q,r] = swap(5,10) returns q = ...
mehr als 2 Jahre vor
Gelöst
Reverse the vector
Reverse the vector elements. Example: Input x = [1,2,3,4,5,6,7,8,9] Output y = [9,8,7,6,5,4,3,2,1]
mehr als 2 Jahre vor
Gelöst
Length of the hypotenuse
Given short sides of lengths a and b, calculate the length c of the hypotenuse of the right-angled triangle. <<https://i.imgu...
mehr als 2 Jahre vor
Gelöst
Generate a vector like 1,2,2,3,3,3,4,4,4,4
Generate a vector like 1,2,2,3,3,3,4,4,4,4 So if n = 3, then return [1 2 2 3 3 3] And if n = 5, then return [1 2 2...
mehr als 2 Jahre vor
Gelöst
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.
mehr als 2 Jahre vor
Gelöst
Side of a rhombus
If a rhombus has diagonals of length x and x+1, then what is the length of its side, y? <<https://imgur.com/x6hT6mm.png>> ...
mehr als 2 Jahre vor
Gelöst
Fibonacci sequence
Calculate the nth Fibonacci number. Given n, return f where f = fib(n) and f(1) = 1, f(2) = 1, f(3) = 2, ... Examples: Inpu...
mehr als 2 Jahre vor
Gelöst
Binary numbers
Given a positive, scalar integer n, create a (2^n)-by-n double-precision matrix containing the binary numbers from 0 through 2^n...
mehr als 2 Jahre vor
Gelöst
Column Removal
Remove the nth column from input matrix A and return the resulting matrix in output B. So if A = [1 2 3; 4 5 6]; ...
mehr als 2 Jahre vor
Gelöst
Length of a short side
Calculate the length of the short side, a, of a right-angled triangle with hypotenuse of length c, and other short side of lengt...
mehr als 2 Jahre vor
Gelöst
Return the 3n+1 sequence for n
A Collatz sequence is the sequence where, for a given number n, the next number in the sequence is either n/2 if the number is e...
mehr als 3 Jahre vor
Minimization of a function with unknown gradient but known sparsity pattern of its hessian
Dear colleague, based on our discussions from yesterday, I implemented a finite difference scheme for a gradient approximation ...
mehr als 3 Jahre vor | 0
Frage
Minimization of a function with unknown gradient but known sparsity pattern of its hessian
Dear colleagues, is there a fmincon option to minimize a function without the knowledge of its gradient but providing a sparsit...
mehr als 3 Jahre vor | 2 Antworten | 1
2
AntwortenGesendet
Simulation of von Kármán viscoelastic plates
A quasistatic evolution of viscoelastic von Kármán plates.
mehr als 3 Jahre vor | 3 Downloads |

Gelöst
Pascal's Triangle
Given an integer n >= 0, generate the length n+1 row vector representing the n-th row of <http://en.wikipedia.org/wiki/Pascals_t...
mehr als 3 Jahre vor
Gelöst
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 ...
mehr als 3 Jahre vor
Gelöst
Determine if input is odd
Given the input n, return true if n is odd or false if n is even.
mehr als 3 Jahre vor
Gelöst
Count ones
Write a program to count number of ones (1s) in an integer variable input. For example: Input x=2200112231 output y=3 I...
mehr als 3 Jahre vor
Gelöst
Complex number
For complex number c=a+bi, write code that will add a and b together.
mehr als 3 Jahre vor