統計
MATLAB Answers
5 質問
0 回答
ランク
of 171,552
コントリビューション
0 問題
0 解答
スコア
0
バッジ数
0
コントリビューション
0 投稿
コントリビューション
0 パブリック チャネル
平均評価
コントリビューション
0 ハイライト
平均いいねの数
Feeds
質問
What is wrong with my code.It's not producing correct figure.The axis should run from -1 to 1,but it's not!
Problem 24. Write a function called make_square_waves that takes two positive integers as input arguments (it does not have to ...
5年以上 前 | 0 件の回答 | 0
0
回答質問
What is wrong with my code.I want to connect stars(*)by straight line,but it's printing only points,not line!
function draw_constellations set(gcf,'color','m'); set(gca,'color','m'); axis([0 100 0 100]) hold on; ...
5年以上 前 | 1 件の回答 | 0
1
回答質問
Write a function max_sum that takes v a row vector of numbers & n,a positive integer as inputs.The function needs to find n consecutive elements of v whose sum is largest possible.It returns summa & index of first element of n consecutive integers.
%Example-[summa,index]=max_sum([1 2 3 4 5 4 3 2 1],3) % summa=13 % index=4 function [summa,index]=max_sum(v,n) total=v(1,...
5年以上 前 | 24 件の回答 | 2
24
回答質問
Please find the error
%Write a function called max_sum that takes v as a row vector of numbers, & n,a postive integer as inputs.The function needs to ...
5年以上 前 | 1 件の回答 | 0
1
回答質問
How can I overcome the error "variable admit must be of data type logical instead of double"..I have to return logical values true or false using the function below.what is wrong with this?
function admit=eligible(v,q) avg=(v+q)/2; if avg>=92 ...%% && v>88 ... %% && q>88 %% admit=1; else admit=0...
5年以上 前 | 1 件の回答 | 2

