필터 지우기
필터 지우기

how to clone code from github website to online matlab platform

조회 수: 3 (최근 30일)
rajavikramreddy Etikala
rajavikramreddy Etikala 2021년 4월 12일
답변: Warda Takerkart 2022년 4월 26일
please share how to add github code link to online matlab platform
even how to link our system code to upload on platform

답변 (2개)

Martinez Tutt
Martinez Tutt 2021년 4월 12일
Create a new local copy of a project by retrieving files from Git™ source control.
On the Home tab, click New > Project > From Git. The New Project From Source Control dialog box opens.
Alternatively, on the Simulink® start page, click the Project from Git template.
Enter your HTTPS repository path into the Repository path field.
In the Sandbox field, select the working folder where you want to put the retrieved files for your new project.
Click Retrieve.
If an authentication dialog box for your repository appears, enter the login information for your Git repository account -- for instance, your GitHub® user name and password.
If your repository already contains a project, then the project is ready when the tool finishes retrieving files to your selected sandbox folder.
If your sandbox does not yet contain a project, then a dialog box asks whether you want to create a project in the folder. To create a project, specify a project name and click OK. The Welcome screen appears to help you set up your new project. For more information about setting up a project, see Create a New Project From a Folder.
Was on matlab page
  댓글 수: 1
rajavikramreddy Etikala
rajavikramreddy Etikala 2021년 4월 12일
On the Home tab, click New > Project
online matlab platform their is no project under new tab

댓글을 달려면 로그인하십시오.


Warda Takerkart
Warda Takerkart 2022년 4월 26일
function [ ACOnextroute ] = rouletteWheel( P )
cumsumP = cumsum(P);
r = rand();
ACOnextroute = find(r <= cumsumP);
ACOnextroute = ACOnextroute(1);
end

카테고리

Help CenterFile Exchange에서 Source Control in Projects에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by