photo

Xh Du


Last seen: mehr als 2 Jahre vor Aktiv seit 2015

Followers: 0   Following: 0

Statistik

  • First Review
  • Thankful Level 4

Abzeichen anzeigen

Feeds

Anzeigen nach

Frage


Try to save structural variable, but not everything is saved
Hi all, I ran my code for a few hours and now I get some results. I'd like to save these data to a .mat file such that I can ...

mehr als 7 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Is it faster to operate a sparse matrix than a dense one when they have the same size?
Hi all, Imagine I have 2 same size matrices, both takes only the upper triangular part and sparse, their sparsity is like thi...

mehr als 7 Jahre vor | 2 Antworten | 0

2

Antworten

Frage


How to recover a square matrix from its upper triangular cell part?
Hi all, I'd like to compute the upper triangular part only for a symmetric matrix in a block by block way. After some operat...

mehr als 7 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Put elements into corresponding locations of upper triangular matrix
Hi all, Imagine I have a vector: inpt = (1:6)'; Now I'd like to put elements of inpt in the upper triangular part of ...

mehr als 7 Jahre vor | 2 Antworten | 0

2

Antworten

Frage


How to compute the indices of a square matrix?
Hi all, Imagine I have indices: i, j, k, l, I write for i = 1:1 for j = 1:1 for k = 1:2 for l = 1:2 ...

mehr als 7 Jahre vor | 2 Antworten | 0

2

Antworten

Frage


Operations for calculating l1 and Frobenius norm
Hi all, Imagine I have 2 same-length vectors, u1 and u2, and e = u1 - u2. I'd like to calculate 1. l1 norm of e; 2. Frobenius...

mehr als 7 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Fprintf: how to automatically move to a new line when reach end of screen?
Hi all, I have something like this: clear; clc; for i = 1:100 fprintf('%d', i) end Here I use fprintf to...

mehr als 7 Jahre vor | 5 Antworten | 0

5

Antworten

Frage


How to plot the l2 norm circle?
Hi all, I'm trying to visualize the l2 norm circle. It seems easy but I'm stuck. This is the code I write to plot the circle ...

mehr als 7 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Concatenate cell array along one dimension
Hi all, I have a cell array like this: cellA = [12x2 double] [12x2 double] [12x2 double] [12x2 doub...

mehr als 7 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Extract and realign cells into new cell
Hi all, I have a cell array 'cellA' which contains cell: cellA = {2x1 cell} {2x1 cell} {2x1 cell} {...

mehr als 7 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Optimize RAM cost by only storing upper triangular part of a symmetric matrix?
Hi all, I have some symmetric (almost dense) matrices which I wish to store only the upper triangular part such that I can op...

mehr als 7 Jahre vor | 2 Antworten | 0

2

Antworten

Frage


Lagrange interpolation in 2D?
Hi all, I'd like to find the interpolating polynomials on a 2d domain. Imagine we have sample points (x1, y1), ... ,(xn, ...

mehr als 7 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


MATLAB killed in Linux
Hi all, I'm running my code with a elasto-dynamics model, which has 300 degrees of freedom and 300 time steps, and this probl...

mehr als 7 Jahre vor | 0 Antworten | 0

0

Antworten

Beantwortet
Dynamically update cell without clearing previous content?
solution: 'a' can be dynamically updated without special treatment: clear; clc; nr = 1; a = cell(1); for i...

mehr als 7 Jahre vor | 0

| akzeptiert

Frage


Dynamically update cell without clearing previous content?
Hi all, I'd like to dynamically update cell content and size, without clearing the previous cell content. Check the following...

mehr als 7 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


How to plot solid tetrahedrons in MATLAB?
Hi all, I have information of a mesh including coordinates of nodes and connectivity, how can I plot solid tetrahedrons in MA...

mehr als 7 Jahre vor | 2 Antworten | 0

2

Antworten

Frage


Any recommendations for 3d FEM toolboxes in MATLAB?
Hi all, I have a finite element mesh including nodes and connectivity imported from Abaqus, which looks like this: >> ca...

mehr als 7 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


Variable size: does it reflect real size after computation finishes?
Hi all, I have a program which produces a 40227 by 50 double matrix. I'd like to optimize storage so I want to check total me...

mehr als 7 Jahre vor | 2 Antworten | 0

2

Antworten

Frage


Built-in functions VS explicit loops: which is faster in MATLAB?
Hi all, I did some speed tests with implicit functions and explicit loops, both repeat 1000 times and calculate average time....

fast 8 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


Avoid for loops, use cell operation
Hi all, I've asked this question before but didn't get satisfied answer, so I'll change the way of asking. Say I have an ...

fast 8 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Avoid for loops, use cell operation to do: r2' * r1 * l1' * l2
Hi all, Say I have 2 simple 1-by-2 cells, I'd like to perform operation like this: r2' * r1 * l1' * l2 to obtain a 2-by-2 mat...

fast 8 Jahre vor | 0 Antworten | 0

0

Antworten

Frage


Surface plot with semilog z-axis: how to keep the same axis limit for iterative plots?
Hi all, I have an algorithm which generates 4 surfaces iteratively. I'd like to set the z-axis to semilog scale and keep the...

fast 8 Jahre vor | 1 Antwort | 1

1

Antwort

Frage


How to only perform the upper triangular part of matrix operations?
Hi all, I'm trying to solve this problem, where I have to use a nested loop like this: clear; clc; demo = zeros(4, 4)...

fast 8 Jahre vor | 1 Antwort | 0

1

Antwort

Beantwortet
How to avoid repeated computation when the result is a symmetric matrix?
Guess answer is in the comment, credit: Adam. https://uk.mathworks.com/matlabcentral/answers/332568-how-to-avoid-repeated-com...

fast 8 Jahre vor | 0

| akzeptiert

Frage


How to avoid repeated computation when the result is a symmetric matrix?
Hi all, When obtaining a symmetric matrix, we know that we only need to compute and store the elements of upper triangular pa...

fast 8 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Cellfun to extract arrays from multi-dimensional cell
Hi all, Imagine I have a 2-d cell, each cell element is a m by n matrix, I apply SVD on each element such that they are decom...

fast 8 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


Cell in cell in cell...... versus multiDimensional cell
Hi all, Imagine now I have some data to be stored, say there are 24 matrices I need to store. I have 2 choices: 1. use cel...

fast 8 Jahre vor | 2 Antworten | 0

2

Antworten

Frage


How to use savefig to save .fig to a specific location?
Hi all, I'd like to use savefig to save .fig files to a specific location, such as: savefig('test.fig') to here: ...

fast 8 Jahre vor | 1 Antwort | 0

1

Antwort

Frage


How to find out the dependency of functions?
Hi all, For a function, I'd like to find out which scripts and functions are calling it. For example, there is a function: ...

fast 8 Jahre vor | 2 Antworten | 0

2

Antworten

Frage


How to communicate among objects from different classes in a solid way?
Hi all, This is a really long question, thanks for your patience! Imagine I have two classes like this: classdef beam...

fast 8 Jahre vor | 1 Antwort | 0

1

Antwort

Mehr laden