代码搜索:multidimensional
找到约 559 项符合「multidimensional」的源代码
代码结果 559
www.eeworm.com/read/303772/13809470
m comp_sigreshape_pre.m
function [f,fl,W,wasrow,remembershape]=comp_sigreshape_pre(f,callfun,do_ndim)
%COMP_SIGRESHAPE_PRE
%
% This program is free software: you can redistribute it and/or modify
% it under the terms of t
www.eeworm.com/read/220439/14800867
cpp tic-tac-toe_board.cpp
// Tic-Tac-Toe Board
// Demonstrates multidimensional arrays
#include
using namespace std;
int main()
{
const int ROWS = 3;
const int COLUMNS = 3;
char board[ROWS]
www.eeworm.com/read/430096/8766801
java ex5(3).java
// arrays/Ex5.java
// TIJ4 Chapter Arrays, Exercise 5, page 759
// Demonstrate that multidimensional arrays of non-primitives are
// automatically initialized to null.
import java.util.*;
class
www.eeworm.com/read/427909/8913451
m argmax.m
function indices = argmax(v)
% ARGMAX Return as a subscript vector the location of the largest element of a multidimensional array v.
% indices = argmax(v)
%
% Returns the first maximum in the cas
www.eeworm.com/read/427909/8913711
m argmin.m
function indices = argmin(v)
% ARGMIN Return as a subscript vector the location of the smallest element of a multidimensional array v.
% indices = argmin(v)
%
% Returns the first minimum in the ca
www.eeworm.com/read/184304/9111968
m exm041~7.m
%exm04134_1.m
a='MATLAB 5 ';b='introduces new data types:';
c1='◆Multidimensional array';c2='◆User-definable data structure';
c3='◆Cell arrays';c4='◆Character array';
c=char(c1,c2,c3,c4);
C={a;b
www.eeworm.com/read/281848/9130123
java ex5(3).java
// arrays/Ex5.java
// TIJ4 Chapter Arrays, Exercise 5, page 759
// Demonstrate that multidimensional arrays of non-primitives are
// automatically initialized to null.
import java.util.*;
class
www.eeworm.com/read/373250/9467537
m argmax.m
function indices = argmax(v)
% ARGMAX Return as a subscript vector the location of the largest element of a multidimensional array v.
% indices = argmax(v)
%
% Returns the first maximum in the cas
www.eeworm.com/read/373250/9467734
m argmin.m
function indices = argmin(v)
% ARGMIN Return as a subscript vector the location of the smallest element of a multidimensional array v.
% indices = argmin(v)
%
% Returns the first minimum in the ca
www.eeworm.com/read/175308/9552663
ex-09-05
// Example 09-05: Initializing a multidimensional array
namespace Programming_CSharp
{
using System;
public class Tester
{
static void Main()
{
const int ro