photo

Mark Saad


Last seen: 5 years 前 自 2018 起处于活动状态

Followers: 0   Following: 0

统计学

All
MATLAB Answers

0 个提问
7 个回答

Cody

0 个问题
1 个答案

排名
8,078
of 299,806

声誉
6

贡献数
0 个提问
7 个回答

回答接受率
0.00%

收到投票数
1

排名
 of 20,809

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名
95,668
of 166,074

贡献数
0 个问题
1 个答案

评分
20

徽章数量
1

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Solver
  • Knowledgeable Level 1
  • First Answer

查看徽章

Feeds

排序方式:

已解决


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 years 前

已回答
how to write this equation ?
T = linspace (100, 1, 10); mu = @(t) 0.001 .* (0.2414 * 10.^(247.8./((t - 273) + 68.12963))); mu(T) <</matlabcentral/...

7 years 前 | 1

已回答
How to plot a function with complex variables?
https://www.mathworks.com/help/matlab/creating_plots/plot-imaginary-and-complex-data.html

7 years 前 | 0

已回答
How can I display the second derive of a vector ,?
You can first import it into MATLAB as an array using textread. data = textread('essai_Al_but05_fixe_100Ohm.txt'); Then ...

7 years 前 | 0

已回答
How to set custom origin point?
I was trying to do this the other day. I could not find anything, so I just manually shifted all of my data points. Let's say ...

7 years 前 | 0

已回答
How can I extract and highlight the white portion of an image?
You can try this link: https://www.mathworks.com/discovery/edge-detection.html and this video: https://www.mathworks.com/vi...

7 years 前 | 0

已回答
How can I transform a coordinates data into another 3-D space?
If you know angles through which they were rotated, you could try using rotation matrices. https://www.mathworks.com/help/pha...

7 years 前 | 0

已回答
Row wise indexing of 3d array
You could try: [I,J,K] = ind2sub(size(array), find(array(:,:,:) < 0)); ind = find(J == 3); I = I(ind); J =...

7 years 前 | 0