Yi-xiao Liu
Followers: 0 Following: 0
Statistiques
RANG
195 025
of 295 467
RÉPUTATION
0
CONTRIBUTIONS
26 Questions
5 Réponses
ACCEPTATION DE VOS RÉPONSES
53.85%
VOTES REÇUS
0
RANG
of 20 234
RÉPUTATION
N/A
CLASSEMENT MOYEN
0.00
CONTRIBUTIONS
0 Fichier
TÉLÉCHARGEMENTS
0
ALL TIME TÉLÉCHARGEMENTS
0
RANG
of 153 912
CONTRIBUTIONS
0 Problèmes
0 Solutions
SCORE
0
NOMBRE DE BADGES
0
CONTRIBUTIONS
0 Publications
CONTRIBUTIONS
0 Public Chaîne
CLASSEMENT MOYEN
CONTRIBUTIONS
0 Point fort
NOMBRE MOYEN DE LIKES
Feeds
Question
MATLAB and Fortran gives different results (precision)
I have 2 small programs in MATLAB and Fortran, respectively, which should be identical MATLAB version f=zeros(size(r1,1),3); ...
presque 2 ans il y a | 1 réponse | 0
1
réponseQuestion
FFT spectral leak?
I find that in the power spectrum returned by fft the amplitude of peaks are much smaller than expected, even for artifical sign...
environ 2 ans il y a | 1 réponse | 0
1
réponseQuestion
Efficient way to divide array into tiles
I use the following code to divide array into tiles n=2;nrow=3;ncol=3; A=reshape(1:36,6,6) A=mat2cell(A,zeros(nrow,1)+n,zer...
environ 2 ans il y a | 1 réponse | 0
1
réponseIntersect() with with repetition
Here is my current solution. A=[1,1;1,1;1,2]; B=[0,1;1,1;1,1]; [uA,~,iA]=unique(A,"rows","stable"); iA=sortrows([iA,(1:...
plus de 2 ans il y a | 0
Question
Intersect() with with repetition
The syntax [C,ia,ib] = intersect(A,B,'rows') returns elements without repetitions. However, I need every potential combination o...
plus de 2 ans il y a | 4 réponses | 0
4
réponsesPrinting figure alters content details
I have brought this to MATLAB support, they concluded that this is an visual artifact produced by the renderer when the on-scree...
plus de 2 ans il y a | 0
Question
Printing figure alters content details
I am trying to print some figures generated by imagesc into png images for portability. However, I found the output to lose some...
plus de 2 ans il y a | 2 réponses | 0
2
réponsesQuestion
Exporting large figure on headless servers
I am trying to export some large figures (~1e4 by 1e4 surf plots) into bitmap images directly on our HPC cluster. Here is some t...
plus de 2 ans il y a | 1 réponse | 0
1
réponseQuestion
pre-allocating disk space for matfile objects containing cell arrays of large sparse matrices
I have a custom function that consumes O(n^2) RAM in intermediate steps and generates very sparse outputs. The current strategy ...
plus de 2 ans il y a | 1 réponse | 0
1
réponseEquivalent of A&(~B) without using ~
Hat tip to @David Goodmanson and @Stephen23. I found 4 solutions: A=rand(5)<0.6;B=rand(5)>0.2; ref=A&(~B); Method1=A; Me...
plus de 2 ans il y a | 0
| A accepté
Question
Equivalent of A&(~B) without using ~
I am looking for a way to generate the same output as A&(~B) w/o using the ~ operator. The problem is both A and B are very larg...
plus de 2 ans il y a | 1 réponse | 0
1
réponseQuestion
Slicing matrices to fit in memory
I have a custom vectorized function whose space (and time) complexity is O(n^2). The problem is that n is very large, ~1e6, and ...
plus de 2 ans il y a | 1 réponse | 0
1
réponseimplicit expansion for arrayfun
Apparently arrayfun is a build-in function and I cannot access its source code. Here is what I come up with. [a,b,c,d]=Implicit...
presque 3 ans il y a | 0
Question
implicit expansion for arrayfun
I want to do something similar to bsxfun, but for more than 2 arrays. For example arrayfun(@f, A,B,C,D) where A is a m-by-...
presque 3 ans il y a | 2 réponses | 0
2
réponsesQuestion
Find the index range of ones/trues?
For example, given a logical vector: [0,0,1,0,0,1,1,0,1,1,1,0,0...] I need a two-column matrix: [3,3; 6,7; 9,11;...] tha...
plus de 3 ans il y a | 2 réponses | 0
2
réponsesQuestion
Please help me vectorize my loop to construct query vector from sample points
I want to construct a vector xq (the query vector) from xs (sample point vector) for use in interp1. Ideally, xq would: contain...
plus de 3 ans il y a | 1 réponse | 0
1
réponseQuestion
Why does this vectorized version does return the same as a for loop?
I am trying to sum the inter-electrostatic forces of n points at r=[rx,ry,rz] However, the vectorized version does not return...
plus de 3 ans il y a | 1 réponse | 0
0
réponseQuestion
Does event location terminate ODE solver at tspan?
I just wonder what's the behavior of this edge case: a event location is setup to terminate the intergration, however the event ...
plus de 3 ans il y a | 1 réponse | 0
1
réponseWarning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN. when switching to stiff solvers
OK, I am going to answer my own question here. After providing Jpattern, the ode15s works normally, but does not display any ...
plus de 3 ans il y a | 0
| A accepté
Question
Warning: Matrix is singular, close to singular or badly scaled. Results may be inaccurate. RCOND = NaN. when switching to stiff solvers
I am solving a system of ODE to model electrospinning, which could be described as n Viscoelastically connected point charge ...
plus de 3 ans il y a | 1 réponse | 0
1
réponseQuestion
Solving vectorized ODE (Solving same ODE with many initial conditions at once).
I am tring to apply 2nd newton law to many points, where m,r,v,f is a n-by-1, n-by-3, n-by-3, n-by-3, n-by-3, matrixes for mass,...
plus de 3 ans il y a | 2 réponses | 0
2
réponsesQuestion
Logical indexing 3D array to get a 2D slice
I have a piece of code that calculates potential for 3D space. Now I want to extract the potential at the YOZ plane: [X,Y,Z]=me...
plus de 3 ans il y a | 1 réponse | 0
1
réponseQuestion
Padded input for ScatteredInterpolant
I am tring to reconstruct a surface in cylinderical coordinate space from set of points. theta,R,z represents azimuthal, radial,...
plus de 3 ans il y a | 1 réponse | 0
0
réponseQuestion
Scaled MAD in isoutlier
I have been using scaled MAD in isoutlier and it has done a wonderful job. However, I wonder what's the mathematical basis of th...
presque 4 ans il y a | 1 réponse | 0
1
réponseQuestion
Compare 2 regression models
I wonder if there is any tool to compare 2 regression models on the same sample pool. In general more terms you put into the mod...
presque 4 ans il y a | 1 réponse | 0
1
réponseQuestion
Finding the ranges where scatteredInterpolant is above threshold
I have been using scatteredInterpolant to reconstruct surfaces from actual measured data points. To address the slight misplacem...
presque 4 ans il y a | 1 réponse | 0
1
réponseQuestion
Assign different marker to different errorbar lines
h=errorbar(cell2mat(X2D),cell2mat(Y2D),cell2mat(E2D)); legend(Grouplabel); mkrs=['o';'d';'s';'^';'+';'x']; I use the above co...
presque 4 ans il y a | 1 réponse | 0
0
réponseQuestion
Adding label to axis ticks
How do I add labels next to the 3 180 xticks? Like sampleA for the first one, sampleB for the second, etc. Thanks! >> xt = xt...
environ 4 ans il y a | 1 réponse | 0
1
réponseQuestion
Function to output multiple figures
I am trying to write a function that could output multiple figures function [fig1,fig2] = FunctionName(Input1,Input2,Input3) ...
presque 5 ans il y a | 1 réponse | 0
0
réponseQuestion
Check appearance counts of multiple patters in a cell matrix
I have 2 cell matrixs: A = m×1 cell array {'abc'} {'def'} {'123'} ...... B = n×1 cell array ...
presque 5 ans il y a | 1 réponse | 0