photo

Keshav


Last seen: 7 months 前 自 2022 起处于活动状态

Followers: 1   Following: 0

Programming Languages:
C++
Spoken Languages:
English

统计学

MATLAB Answers

0 个提问
11 个回答

排名
1,728
of 297,503

声誉
38

贡献数
0 个提问
11 个回答

回答接受率
0.00%

收到投票数
5

排名
 of 20,449

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名

of 158,938

贡献数
0 个问题
0 个答案

评分
0

徽章数量
0

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Knowledgeable Level 2
  • First Answer

查看徽章

Feeds

排序方式:

已回答
connect variable signals with signal builder or equivalent block using M Script
Hi, I understand that you have a Simulink model and a MAT file which contains few signal and their corresponding value. You wan...

8 months 前 | 2

| 已接受

已回答
Efficient Way to find index of max column for each row
Hi, Based on my understanding you have a matrix. for each row you want to find the index of maximum value. you can use the below...

2 years 前 | 0

已回答
How to plot multiple curves on the same graph
Hi, you can use the hold on function to plot both line on same graph. you can refer to the below code. x = [1 2 3 4 5]; y = [7...

2 years 前 | 1

| 已接受

已回答
How to find values in a vector that are correspond to the 6th biggest values in another related vector?
you can use the below code and made the change according to you. basically idx will store the index corresponding to the sorte...

2 years 前 | 0

| 已接受

已回答
Automate an averaging process and store info into an array
Hi, Based on my understanding you want to first calculate the average of 2 elements, 3 elements,... n elements. so if the array ...

2 years 前 | 0

已回答
break x axis on matlab plot
Hi, Based on my understanding you want to focus only on the range between -10 and 10 on x axis. you can use the xlim function in...

2 years 前 | 0

已回答
Is it possible to transfer a variable with values from my workspace into a excel spreadsheet automatically in my Matlab code?
As Stephen said you can follow this documentation to write data in excel file.

2 years 前 | 0

已回答
How to download file using Mobile Matlab
you can follow this documentation in order to download files in your mobile device.

2 years 前 | 0

| 已接受

已回答
How can I get randperm function to calculate assigned percentage and values?
Based on my understanding, you want to generate an array of size n such that random 75% elements value is 1.5. you can use the ...

2 years 前 | 1

| 已接受

已回答
Use text strings in a cell array in a 'for loop' and also use that text string to name the output
you can use the below code. for i=1:length(sitearray) Output_sitearray(i) = Data.(sitename(i)).matrix(:,[1]); end

2 years 前 | 0

| 已接受

已回答
adding variable in the name of table for while loop
you can not use i as a variable inside Alq_i_t variable name. and instead of making 36 different variable you can make an array ...

2 years 前 | 1

| 已接受