How do I make it calculate the variable maxK inbetween both input arguments?

조회 수: 1 (최근 30일)
How do I make it calculate the variable maxK in between both input arguments:
clear;
close all;
clc;
N = input('Gamemode [4/5/6+]: ');
maxK = (N^2 + 5*N + 6) / 2; % <======= This variable, so it can be used in the K input request
K = input(['Starting pieces [max.' maxK ']: ']);

채택된 답변

Kamil Antos
Kamil Antos 2019년 12월 16일
input([sprintf('Starting pieces [max.%i]: ', maxK)])

추가 답변 (1개)

Steven Lord
Steven Lord 2019년 12월 16일
If you're using release R2016b or later of MATLAB, you can use string. If you're using release R2017a or later you can define the string arrays that make up most of your message using double quotes.
K = input("Starting pieces [max." + maxK + "]: ");

카테고리

Help CenterFile Exchange에서 Tables에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by