どこでもノート

数学、物理、プログラムあたりの気になったことをゆるく

MATLAB コーディ

Problem 2.Make the vector[1 2 3 4 5 6 7 8 9 10]

function x = oneToTen x = [1 2 3 4 5 6 7 8 9 10];end

Problem 1.Times2-START HERE

function y = times2(x) % Modify the line below so that the output y is twice the incoming value x y = 2*x; % After you fix the code, press the "Submit" button, and you're on your way. end

MATLABコーディ紹介

MATLABのお勧めの勉強法にMATLABコーディがあります。 これはWEBブラウザ上でMATLABの問題を解いて答え合わせができるものです コーディチームが作成した課題、参加者が作成した課題合わせて3300問程あります(2019年5月時点) MathWorksのアカウントを持っ…