![photo](/responsive_image/150/150/0/0/0/cache/matlabcentral/profiles/8835633_1519087705114_DEF.jpg)
Maria Galle
Followers: 0 Following: 0
Feeds
提问
why are if statements not working?
%the if statements are not working when I run the code Price=[199.54 195.89 195 192 193.29 197.09 197.78 190.34 189.55 193.30...
4 years 前 | 2 个回答 | 0
2
个回答提问
using if statements to find daily stock holding and cash
Suppose you owned 100 shares with no cash over a 17 day period and you bought 10 shares every day the price was below $193.50 an...
4 years 前 | 1 个回答 | 0
1
个回答提问
Plotting 16 plots in one figure using handle graphics
I'm trying to plot 16 plots in one figure window to make a 4x4 grid using handle graphics and NOT using subplot. I'm trying to u...
4 years 前 | 1 个回答 | 0
1
个回答提问
Composite Simpson's 1/3 rule code error
I'm trying to use the composite simpsons 1/3 rule but the code is giving me an error message. fx=1-exp(-x); n = 5; x = linspa...
4 years 前 | 2 个回答 | 0
2
个回答提问
Fsolve cannot continue error
I keep getting the error Caused by: Failure in initial objective function evaluation. FSOLVE cannot continue. clear va...
4 years 前 | 1 个回答 | 0
1
个回答提问
Bisection method code matlab
I'm trying to write a code using the bisection method to find the root but I'm not sure I wrote it correctly. t=4; c_d=0.25; ...
4 years 前 | 1 个回答 | 0
1
个回答提问
using fimplicit function to plot
I'm trying to make a plot using the fimplicit function but the figure is empty. zf(1) = figure(1); za(1) = axes; c = -4:2:4; ...
4 years 前 | 2 个回答 | 1
2
个回答提问
trying to display a list of numbers
I am trying to display a list of numbers of prime numbers from 1-1000. I tried using a for loop and if else statements. for n...
4 years 前 | 1 个回答 | 0
1
个回答提问
getting an empty figure for line plot of sine function
I'm trying to plot a sine function but I'm getting an empty figure x=-10:10; y = (sin(sin(pi*x))) / (pi*x); zf(1) = figure(1)...
4 years 前 | 1 个回答 | 0
1
个回答提问
Trying to use a for loop, date commands to calculate date of Memorial day for next 10 years
I'm trying to use a for loop and the date commands to calculate the date of Memorial day for next 10 years. cl = clock; ...
4 years 前 | 3 个回答 | 0
3
个回答提问
I am trying to plot but I am getting an empty figure
I am trying to plot but I am getting an empty figure. I am not sure what is wrong with my code. for Tf=32:1:212 p=133.3*exp(2...
4 years 前 | 1 个回答 | 0
1
个回答提问
Using 3x3 matrix to create 21x21 matrix
I have built a 3x3 matrix using the code below EA = 1; h = 1; F = @(xi)(xi-0.5).*(xi-0.5) k(1,1) =EA/h* 2*quad(F, -1, ...
5 years 前 | 1 个回答 | 0
1
个回答提问
using 3x1 matrix to make 21x1 matrix
I have built the 3x1 matrix below EA = 1; h = 1; P = 1 FF = @(xi) (0.5*xi).*(xi-1) f(1,1) = P*h/2*quad(FF,-1,1) FF ...
5 years 前 | 1 个回答 | 0
1
个回答提问
How to create a nxn matrix by using for-end loop?
How do I: Create a n × n matrix of n = 20 by using for-end loop such that the matrix has diagonal elements of a value 2. The el...
5 years 前 | 1 个回答 | 0