photo

Roger J


Last seen: 4年以上 前 2020 年からアクティブ

Followers: 0   Following: 0

統計

All
MATLAB Answers

1 質問
10 回答

Cody

0 問題
3 解答

ランク
1,516
of 300,750

評判
46

コントリビューション
1 質問
10 回答

回答採用率
100.0%

獲得投票数
9

ランク
 of 21,073

評判
N/A

平均評価
0.00

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

ダウンロード
0

ALL TIME ダウンロード
0

ランク
78,185
of 170,837

コントリビューション
0 問題
3 解答

スコア
40

バッジ数
1

コントリビューション
0 投稿

コントリビューション
0 パブリック チャネル

平均評価

コントリビューション
0 ハイライト

平均いいねの数

  • Thankful Level 1
  • Knowledgeable Level 2
  • First Answer
  • Solver

バッジを表示

Feeds

表示方法

回答済み
How to generate time dependent exponential terms in Simulink?
I did it with a "Matlab function" which you can add to the simulink diagram like any other element. When you double click the...

5年以上 前 | 5

| 採用済み

回答済み
How to remove the input port from Gain block of Simulink?
If you are trying to drive the output with a constant value "0.5" then you can use something like You can add the "Constan...

5年以上 前 | 1

| 採用済み

回答済み
how to read each text file using stread command
Aman, I think that you want to end the script with one large matrix that has data from all files. And you want to print only...

5年以上 前 | 0

| 採用済み

回答済み
Medical Image Processing: X and Y coordinates switched around after using find and ind2sub?
Sam, This is a common misunderstanding. Please see if this link answers your question: https://www.mathworks.com/matlabcentra...

5年以上 前 | 1

| 採用済み

質問


impulse response for difference equation
I'm trying to derive the impulse response for the following: y[n] = ay[n − 1] + x[n] − (a^N)x[n − N] I am using two diff...

5年以上 前 | 1 件の回答 | 0

1

回答

回答済み
How to fill a large gap in a sine wave?
You can try something like the following: temp_reconstructed = fillgaps(tablecomplete.table_temperature,80,50); Where I ha...

5年以上 前 | 1

| 採用済み

回答済み
How to call files with location names of >1 words?
You can use the following: >> location = lower(fname); % convert to lower case >> location = char(location); ...

5年以上 前 | 0

回答済み
how can i write a code with consecutive number between 0-100 and use this values inside my code?
x=0:100 % creates 101 elements from 0 to 100 y=x(12) % sets y to the value of x(12) x = 0.05 + (0.1-0.05).*[0:100]; % ...

5年以上 前 | 0

回答済み
How can I automatically let Matlab input the file in sequence?
Can you try the following: >> for i=1:1000 fn_read ="sample"+i+".wav"; % this is the file name to read from fn_rea...

5年以上 前 | 1

| 採用済み

回答済み
Building array with custom function
If you don't assign the return values from a function call, then only the first is assigned to the default ans variable. ...

5年以上 前 | 0

| 採用済み

回答済み
How do I calculate the area between a curve and a horizontal line?
Capture the return value from "area()", and then find the x values for the two points where p1e crosses hwMark. Now you can...

5年以上 前 | 0

解決済み


Check if equal
Return true if all the elements of an nD array are equal, false otherwise.

5年以上 前

解決済み


find the maximum element of the matrix
for e.g x = [1 2; 3 4] y = 4

5年以上 前

解決済み


Times 2 - START HERE
Try out this test problem first. Given the variable x as your input, multiply it by two and put the result in y. Examples:...

5年以上 前