photo

aara


自 2019 起处于活动状态

Followers: 0   Following: 0

统计学

All
MATLAB Answers

0 个提问
9 个回答

Cody

0 个问题
2 个答案

排名
2,237
of 297,457

声誉
28

贡献数
0 个提问
9 个回答

回答接受率
0.00%

收到投票数
4

排名
 of 20,438

声誉
N/A

平均
0.00

贡献数
0 文件

下载次数
0

ALL TIME 下载次数
0

排名
87,598
of 158,938

贡献数
0 个问题
2 个答案

评分
30

徽章数量
1

贡献数
0 帖子

贡献数
0 公开的 个频道

平均

贡献数
0 个亮点

平均赞数

  • Knowledgeable Level 2
  • Solver
  • First Answer

查看徽章

Feeds

排序方式:

已回答
write statement without using for loop
use if condition? if bi = 0 gi == alpha; else gi == beta; end

6 years 前 | 0

已回答
For Loop is only running once
the size function returns a vector [1 41] which is why the loop only runs once. Use: for ii = 1:max(size(M));

6 years 前 | 2

| 已接受

已回答
Function to find solutions to Ax=b
You must consider when the matrix A has more columns than elements (n>m). From lines 12 to 15 (shown below) would use col_i for ...

6 years 前 | 0

已回答
How can I use for loop to input values when solving ODEs using ode45?
You have to define the initial and final time for the ode45 function rather than just typing t, use [t0 tf]. I suggest editting...

6 years 前 | 0

| 已接受

已解决


Make the vector [1 2 3 4 5 6 7 8 9 10]
In MATLAB, you create a vector by enclosing the elements in square brackets like so: x = [1 2 3 4] Commas are optional, s...

6 years 前

已回答
Optimizing for a function output with multiple variables having different ranges.
Hi, a for loop would be very useful, you could use it to cycle through all the datapoints you want: %define T1, T2, P1,P2 Range...

6 years 前 | 0

| 已接受

已解决


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:...

6 years 前

已回答
Select certain percentage of a plot
You can use a for loop add all the totals together incrementally and check when its above your desired value: x = 1:20; y = [0...

6 years 前 | 0

已回答
Optimize code using loop
Check the comments within the code: clc; clear all; close all; Tc = 369.8; % Propan critical Temp in K funPr = @(Vr...

6 years 前 | 1

| 已接受

已回答
Subtracting 1 matrix from several columns in a larger matrix
You could form a similar sized matrix of zeros, place the desired values which you wish to subtract from the original data and t...

6 years 前 | 0

已回答
How do you print an anonymous function properly in a figure title?
You could do it by manipulating the equation of the function alone and then adding it to the remaining text: f=@(x) x.^2 x_coo...

6 years 前 | 1

| 已接受