Net Fre - MATLAB Central
photo

Net Fre


Last seen: 1 month 前 自 2021 起处于活动状态

Followers: 0   Following: 0

统计学

MATLAB AnswersFrom 11/21 to 04/25Use left and right arrows to move selectionFrom 11/21Use left and right arrows to move left selectionTo 04/25Use left and right arrows to move right selectionUse TAB to select grip buttons or left and right arrows to change selection100%
MATLAB Answers

4 个提问
8 个回答

排名
2,865
of 298,102

声誉
20

贡献数
4 个提问
8 个回答

回答接受率
25.0%

收到投票数
2

排名
 of 20,534

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名

of 160,343

贡献数
0 个问题
0 个答案

评分
0

徽章数量
0

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Thankful Level 1
  • Knowledgeable Level 2
  • First Answer

查看徽章

Feeds

排序方式:

提问


Generate Code for classes methods
Hi. This is more of a clarification question than a "how to", because I got the MATLAB answer and it works, but I have a questi...

9 months 前 | 1 个回答 | 0

1

个回答

提问


unable to generate code with 'collisionMesh' function.
Hi. I am trying to create a .mex file using the coder app. The function I am trying to convert uses the collisionMesh and chec...

10 months 前 | 1 个回答 | 0

1

个回答

提问


MATLAB runtime with multiple versions on computer.
Hi! I am trying to export an application made with the app designer in R2020b to a standalone application, that people without ...

2 years 前 | 1 个回答 | 0

1

个回答

已回答
Unstable Closed Loop Poles
Using the rlocus function, you can see that up to a certain value of C (around 0.4 in your case) your closed loop will still be ...

3 years 前 | 0

已回答
How can I update the constant block parameters from the text/csv data file based on the amplitude of the input signal?
Seems like a classic case for a lookup table. There's also a video about it: https://www.youtube.com/watch?v=HmfwKoFHrO4

3 years 前 | 0

已回答
Write a function called rand_test
You can use reshape for that: function [m v] = rand_test(n) m = rand(n^2,1) v = reshape(m,[n,n]) end

3 years 前 | 1

| 已接受

已回答
similarity between closely related signals
You can create a vector calculating the difference between the two, and then find the first index where it is larger than a spec...

3 years 前 | 0

| 已接受

已回答
How to export .mat file to excel different sheets
In the function xlswrite you can specify the sheet you want to write into: xlswrite(filename,A,sheet) Then you can loop over t...

3 years 前 | 1

已回答
How to add a legend to a plot from fitlm function?
Notice that using the fitlm function creates an object called 'LinearModel' containing the data you need (and much more). You c...

3 years 前 | 0

| 已接受

已回答
cut of zeros from a matrix based on the longest non-zero row
Hi You can use the cumprod function. your code line can look like this: % a = some matrix idx = max(sum(cumprod(a~=0,2)),2) ...

3 years 前 | 0

已回答
Function with for loop to calculate power mean
When you build a function, it expects you to do something with the parameters you assigned for it. In this case, the parameter ...

3 years 前 | 0

| 已接受

提问


Make persistant changes in executable app by user
Hi! I am creating a stand-alone application which gets an excel sheet uploaded, and displays data based on it. Thing is, a spe...

3 years 前 | 2 个回答 | 0

2

个回答