photo

Paul


Last seen: Today |  2011 年からアクティブ

Followers: 10   Following: 0

統計

All
MATLAB Answers

147 質問
1,789 回答

Cody

0 問題
11 解答

Discussions

8 ハイライト

ランク
43
of 302,188

評判
4,759

コントリビューション
147 質問
1,789 回答

回答採用率
51.02%

獲得投票数
651

ランク
 of 21,608

評判
N/A

平均評価
0.00

コントリビューション
0 ファイル

ダウンロード
0

ALL TIME ダウンロード
0

ランク
38,863
of 179,876

コントリビューション
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

表示方法

回答済み
Help with tfest function. Resulting transfer function deviates from input on either side of freq range.
Hi Jared, Maybe look into the WeightingFilter opton of tfestOptions. I tried with 'inv' below and seemed to get a result more i...

1日 前 | 0

| 採用済み

質問


Is rowfun Showing Strange Behavior when the Target Function Returns an Empty Output?
Define a function that echos a scalar input, unless the input is 3, which returns an empty row vector 1x0. function y = fun1(x)...

5日 前 | 2 件の回答 | 3

2

回答

回答済み
Problem making it past line 8 - no error given
It's probably just taking a very long time to compute the symbolic solution at each value of trange. One option, shown below, is...

11日 前 | 0

| 採用済み

回答済み
Does anyone know why no matter what I change, I cant get dsolve to work?
It works just fine here in R2026a and worked fine in 2024a. As well. When you run the code,do you get the exact same output as ...

16日 前 | 0

| 採用済み

質問


How Does Symbolic Math Toolbox Define Differentiation of a Complex Function?
The doc page diff - Differentiate symbolic expression or function - MATLAB is essentially silent on how diff handles differentia...

16日 前 | 2 件の回答 | 1

2

回答

質問


Why Does sym(cell) Not Return a Cell?
As far as I can tell, there is no documented behavior for calling sym with single input that's a cell. Nevertheless, if doing so...

21日 前 | 1 件の回答 | 0

1

回答

質問


Can Same Commands in Debugger and Command Window Exhibit Different Behavior?
I was debugging what I'm pretty sure is a bug (or at least an inconsistency) in @doc:subs and came across a behavior that I don'...

21日 前 | 1 件の回答 | 1

1

回答

回答済み
how to implement a non-causal system?
In general (but not always), causality of a linear, time invariant (LTI) system cannot be determined by inspection of the diffe...

29日 前 | 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 "...

約1ヶ月 前 | 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...

約1ヶ月 前 | 0

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

約1ヶ月 前 | 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...

約1ヶ月 前 | 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) ...

約1ヶ月 前 | 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...

2ヶ月 前 | 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...

2ヶ月 前 | 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...

2ヶ月 前 | 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...

3ヶ月 前 | 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)/(...

3ヶ月 前 | 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...

3ヶ月 前 | 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...

3ヶ月 前 | 1

| 採用済み

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

3ヶ月 前 | 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...

3ヶ月 前 | 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...

3ヶ月 前 | 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...

4ヶ月 前 | 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...

4ヶ月 前 | 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,...

4ヶ月 前 | 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...

5ヶ月 前 | 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...

5ヶ月 前 | 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...

6ヶ月 前 | 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...

6ヶ月 前 | 1

さらに読み込む