photo

Paul


Last seen: Today 自 2011 起处于活动状态

Followers: 10   Following: 0

统计学

All
MATLAB Answers

143 个提问
1,786 个回答

Cody

0 个问题
11 个答案

Discussions

8 个亮点

排名
43
of 302,099

声誉
4,746

贡献数
143 个提问
1,786 个回答

回答接受率
51.05%

收到投票数
646

排名
 of 21,543

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名
38,719
of 178,957

贡献数
0 个问题
11 个答案

评分
120

徽章数量
1

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
8 个亮点

平均赞数
1

  • Thankful Level 5
  • 36 Month Streak
  • Guiding Light
  • Knowledgeable Level 5
  • Revival Level 1
  • First Answer
  • Solver

查看徽章

Feeds

排序方式:

已回答
how to implement a non-causal system?
In general (but not always), causality of a linear, time invariant (LTI) system cannot be determined from its input/output relat...

1 hour 前 | 0

提问


How Can Short-Circuiting Logical Operators &&, II be Overloaded in a Classdef?
Logical and - Find logical AND - MATLAB and logical or - Find logical OR - MATLAB can be overloaded for classes with functions "...

6 days 前 | 1 个回答 | 1

1

个回答

已回答
anonymous function with rng call inside
t = 2*(rand(1,1000)-0.5)*100; figure plot(t,f(t,10),'b.',t,f(t,10),'r.') function y = f(t,interval) tinterval = ceil(t/in...

7 days 前 | 0

已回答
Find symbolic solution with intermediate variables of a cubic equation
Check the "AbbreviateOutput" setting of sympref

8 days 前 | 0

| 已接受

已回答
Importing space-delimited files where there are spaces in data fields
T = readtable('timing_log.96278.txt',NumHeaderLines=4,VariableNamesLine=3); T(end-1:end,:) = []; T.description = strtrim(strin...

9 days 前 | 1

已回答
Two sided laplace transform
No, there is not, at least not directly. However, the two-sided Laplace transform of f(t) can be developed by expressing f(t) ...

14 days 前 | 0

提问


Is There a Way to Control Which Folders are Stored in the Drop Down History?
I have a workflow on Linux that needs to do lots of file i/o that goes something like this: 1. Store the originating folder wit...

1 month 前 | 1 个回答 | 0

1

个回答

已回答
Possibility of Using a State-Space Actuator in a Robot Created with Simscape Multibody
Without more info ... I'm pretty sure the answer is yes. The output of the State Space block can be sent into the Simscape Multi...

1 month 前 | 0

已回答
Why I do not see the correct transfer function
Hi Zeyuan, Is G1 defined correctly? If it is, or if stil having trouble after correcting it, it would be easier to help with a...

1 month 前 | 0

| 已接受

提问


Why is vecnorm So Slow?
Why is vecnorm so much slower than the raw calculation and why does such difference increase as the input gets larger. I can see...

2 months 前 | 1 个回答 | 0

1

个回答

提问


Does solve Return an Appropriate Solution for a System of Rational Equations?
Consider a system of equations with LHS being rational functions in two variables. syms x y g = (x-1)/(y-2) == 0; h = (y-2)/(...

2 months 前 | 0 个回答 | 2

0

个回答

已回答
Help using the toeplitz function
"-2 going to down the main diagonal and then 1 in the upper dioagonal and 1 in the lower diagonal." That's symmetric so only on...

2 months 前 | 1

已回答
List all memoized function caches
mf1 = memoize(@func1); mf2 = memoize(@func2); for ii = 1:10,mf1(ii);mf2(ii);end clear mf1 mf2 mfs = struct(matlab.lang.inter...

2 months 前 | 1

| 已接受

已回答
List all memoized function caches
Hi Matt, Is evalin acceptable? clearvars clearAllMemoizedCaches; mf1a = memoize(@func1); mf1b = memoize(@func1); mf2 = me...

2 months 前 | 0

已回答
Make memoized function calls recognize equivalent input sequences (and so avoid redundant cache entries)
That's interesting and seems to suggest that the input argument list is saved off to some data structure (like a cell array?) be...

2 months 前 | 1

| 已接受

提问


What's the Best Way to Convert a .mat File from -v4 format to -v7 Format?
Is there a better way than reading all of the data from the -v4 .mat file and then saving all of the data to a -v7? data = load...

2 months 前 | 1 个回答 | 0

1

个回答

已回答
Innerjoin when a table contains user-defined objects
Hi Matt, I think the class defintion has to change so that the myclass constructor can accept zero arguments. I believe that w...

3 months 前 | 0

| 已接受

已回答
Integral from a function that has a singularity
According to quadgk, for an integrand with a singularity we should "split the interval and add the results of separate integrati...

3 months 前 | 0

提问


Does Matlab Take Full Advantage of the BLAS Routines?
It's my understanding that Matlab uses BLAS routines under the hood for many matrix algebra operations. Is that correct? If so,...

3 months 前 | 1 个回答 | 0

1

个回答

已回答
Memoize an anonymous function with externally scoped variables
[Matt J added:] "... MATLAB® returns the associated cached output values if the following conditions are true. The input argum...

4 months 前 | 1

| 已接受

已回答
Solution of ODE with Symbolic Math Toolbox.
Use rewrite to get the solution in terms of heaviside. syms("t", "positive") syms("T_1", "k_p", "positive") syms("u(t)", "y(t...

4 months 前 | 0

| 已接受

已回答
BodePlot: Plotting straight lines on the Mag and Phase plots. Can access the phase plot, to do so, but not the mag plot
Looks like the mag and phase axes were reversed, specify the axis input to the line commands. The NextPlot commands aren't neede...

5 months 前 | 0

| 已接受

已回答
chebyshev II BPF magnitude response is not equal to 1 in the passband - incorrect magnitude response when using freqz(b,a)
Hi Mohamad, When using the two-output form of zp2sos the gain, g, must be applied to the output of freqz to get the correct fre...

5 months 前 | 1

已回答
How to approach iterative data reading?
Hi Eric, Use logical indexing. time = [rand(1, 5000)]; accel = [rand(1,5000)]; gcamp = [rand(1,5000)]; sd = std(accel); th...

5 months 前 | 0

| 已接受

已回答
how to use mussv with negative frequency?
mussv appears to run w/o error for a complex-valued state space model and does extend its analysis to negative frequencies. Alt...

5 months 前 | 1

Discussion


550,000 Questions on Answers
The 550,000th question has been asked on Answers. How to build a BESS model phasor system - MATLAB Answers - MATLAB Central

5 months 前 | 0

提问


Why Does polyval Return Zero When the Coefficients are Empty?
polyval([],1) polyval(ones(1,0),1) Do those results follow from a mathematical justification or are they arbitrarily specified...

5 months 前 | 3 个回答 | 1

3

个回答

已回答
pwelch method of power spectral density (psd) calculation
As to why pwelch applies datawrap for the case nfft < numel(win) ... I did a bit more searching to try to find the motivation f...

5 months 前 | 0

已回答
Zero gain margin for an stable system from both allmargin and margin
I believe that allmargin yields a result that a user could incorrectly interpret for this example. Define the open-loop transfe...

5 months 前 | 0

已回答
Direct Dynamics of Two-Link Manipulator
It looks like the Matlab Function block is commented. Right click on it and then click Uncomment on the pop-up menu.

5 months 前 | 0

加载更多