photo

johnmurdock


2019 年からアクティブ

Followers: 0   Following: 0

統計

MATLAB Answers

8 質問
0 回答

ランク
236,607
of 300,756

評判
0

コントリビューション
8 質問
0 回答

回答採用率
12.5%

獲得投票数
0

ランク
 of 21,077

評判
N/A

平均評価
0.00

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

ダウンロード
0

ALL TIME ダウンロード
0

ランク

of 170,890

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

スコア
0

バッジ数
0

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

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

平均評価

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

平均いいねの数

  • Thankful Level 1

バッジを表示

Feeds

表示方法

質問


How would I ask the user to input another option for cash flow and interest rate, then compare the two or three additional options?
clc; clear; close all; numberYears= input('Planning Horizon Length\n--> '); cashflows = zeros(numberYears, 1); for k = 1...

6年以上 前 | 0 件の回答 | 0

0

回答

質問


I keep getting this error in my code
Code: y = 0.2; t = 0; h = 0.01; tn = 0.2; kfv = [30 20 40]; for Kidx = 1 : length(kfv) kf = kfv(Kidx); %we assu...

6年以上 前 | 0 件の回答 | 0

0

回答

質問


How do I prompt a user to input a number of values for their future inputts?
So right now, the code I have makes the user input up to an infinite number of values for the cash flow matrix and the intrest r...

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

1

回答

質問


How do I add additional values for k into the function?
clear; clc; close('all'); y = 0.2; t = 0; h = 0.01; tn = 0.2; [t, y] = Euler(t, y, h, tn); function [t, y] = Euler(t0, ...

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

1

回答

質問


How do I output to the command window where the sum of the bars on the graph equal zero along the x axis
clc; clear; close all; A= -15000; A(2:6)= 3200; A(7:9)= [2133.333, 1066.667, 1000]; n=length(A); for i =1:n ...

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

1

回答

質問


How can I solve a truss system using a system of linear equations in a function?
I am confused on how to use the bisection method to solve for F with AC being 4000N. Bisection method example: function [ ...

6年以上 前 | 0 件の回答 | 0

0

回答

質問


How do I add a curve fitted plot to this code?
clc clear close all xls=xlsread("Exam2_Data.xls"); t=xls(:,1); y=xls(:,2); SST=sum((y-mean(y)).^2); for i=1:3 ...

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

1

回答

質問


Curve fit the given data set with an appropriate polynomial function
clear clc A=xlsread('Data.xls'); t=A(:,1); y=A(:,2); SST=sum((y-mean(y)).^2); for i=1:3 fprintf('For %d order fit\n\n',i)...

6年以上 前 | 0 件の回答 | 0

0

回答